Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
fc1df0d3
Commit
fc1df0d3
authored
May 04, 2018
by
Ash McKenzie
Committed by
Nick Thomas
May 04, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Shard name vs. Shard updates, general tech debt cleanup
parent
d5b77d24
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
98 additions
and
30 deletions
+98
-30
ee/app/workers/geo/project_sync_worker.rb
ee/app/workers/geo/project_sync_worker.rb
+3
-2
ee/app/workers/geo/scheduler/per_shard_scheduler_worker.rb
ee/app/workers/geo/scheduler/per_shard_scheduler_worker.rb
+17
-16
ee/app/workers/geo/scheduler/secondary/per_shard_scheduler_worker.rb
...ers/geo/scheduler/secondary/per_shard_scheduler_worker.rb
+2
-2
ee/spec/workers/geo/project_sync_worker_spec.rb
ee/spec/workers/geo/project_sync_worker_spec.rb
+3
-1
ee/spec/workers/geo/repository_sync_worker_spec.rb
ee/spec/workers/geo/repository_sync_worker_spec.rb
+7
-7
ee/spec/workers/geo/scheduler/per_shard_scheduler_worker_spec.rb
.../workers/geo/scheduler/per_shard_scheduler_worker_spec.rb
+66
-2
No files found.
ee/app/workers/geo/project_sync_worker.rb
View file @
fc1df0d3
...
@@ -39,8 +39,9 @@ module Geo
...
@@ -39,8 +39,9 @@ module Geo
registry
.
force_to_redownload_wiki
=
false
registry
.
force_to_redownload_wiki
=
false
if
registry
.
changed?
||
registry
.
last_wiki_synced_at
.
nil?
||
registry
.
last_wiki_successful_sync_at
.
nil?
if
registry
.
changed?
||
registry
.
last_wiki_synced_at
.
nil?
||
registry
.
last_wiki_successful_sync_at
.
nil?
registry
.
last_wiki_synced_at
=
DateTime
.
now
now
=
DateTime
.
now
registry
.
last_wiki_successful_sync_at
=
DateTime
.
now
registry
.
last_wiki_synced_at
=
now
registry
.
last_wiki_successful_sync_at
=
now
success
=
registry
.
save
success
=
registry
.
save
log_info
(
"
#{
success
?
'Successfully marked'
:
'Failed to mark'
}
disabled wiki as synced"
,
registry_id:
registry
.
id
,
project_id:
registry
.
project_id
)
log_info
(
"
#{
success
?
'Successfully marked'
:
'Failed to mark'
}
disabled wiki as synced"
,
registry_id:
registry
.
id
,
project_id:
registry
.
project_id
)
...
...
ee/app/workers/geo/scheduler/per_shard_scheduler_worker.rb
View file @
fc1df0d3
...
@@ -12,34 +12,35 @@ module Geo
...
@@ -12,34 +12,35 @@ module Geo
].
freeze
].
freeze
def
perform
def
perform
Gitlab
::
Geo
::
ShardHealthCache
.
update
(
eligible_shards
)
Gitlab
::
Geo
::
ShardHealthCache
.
update
(
eligible_shard
_name
s
)
eligible_shards
.
each
do
|
shard_name
|
eligible_shard_names
.
each
{
|
shard_name
|
schedule_job
(
shard_name
)
}
schedule_job
(
shard_name
)
end
end
end
def
schedule_job
(
shard_name
)
def
eligible_shard_names
raise
NotImplementedError
healthy_shard_names
end
end
def
eligible_shards
def
schedule_job
(
shard_name
)
healthy_shards
raise
NotImplementedError
end
end
def
healthy_shards
def
healthy_shard
_name
s
strong_memoize
(
:healthy_shards
)
do
strong_memoize
(
:healthy_shard
_name
s
)
do
# For now, we need to perform both Gitaly and direct filesystem checks to ensure
# For now, we need to perform both Gitaly and direct filesystem checks to ensure
# the shard is healthy. We take the intersection of the successful checks
# the shard is healthy. We take the intersection of the successful checks
# as the healthy shards.
# as the healthy shards.
HEALTHY_SHARD_CHECKS
.
map
(
&
:readiness
)
healthy_ready_shards
.
map
{
|
result
|
result
.
labels
[
:shard
]
}.
compact
.
uniq
.
map
{
|
check_result
|
check_result
.
select
(
&
:success
)
}
.
inject
(
:&
)
.
map
{
|
check_result
|
check_result
.
labels
[
:shard
]
}
.
compact
.
uniq
end
end
end
end
def
ready_shards
HEALTHY_SHARD_CHECKS
.
map
(
&
:readiness
)
end
def
healthy_ready_shards
ready_shards
.
map
{
|
result
|
result
.
select
(
&
:success
)
}.
inject
(
:&
)
end
end
end
end
end
end
end
ee/app/workers/geo/scheduler/secondary/per_shard_scheduler_worker.rb
View file @
fc1df0d3
...
@@ -16,8 +16,8 @@ module Geo
...
@@ -16,8 +16,8 @@ module Geo
super
super
end
end
def
eligible_shards
def
eligible_shard
_name
s
selective_sync_filter
(
healthy_shards
)
selective_sync_filter
(
healthy_shard
_name
s
)
end
end
def
selective_sync_filter
(
shards
)
def
selective_sync_filter
(
shards
)
...
...
ee/spec/workers/geo/project_sync_worker_spec.rb
View file @
fc1df0d3
...
@@ -15,7 +15,9 @@ RSpec.describe Geo::ProjectSyncWorker do
...
@@ -15,7 +15,9 @@ RSpec.describe Geo::ProjectSyncWorker do
end
end
context
'when project could not be found'
do
context
'when project could not be found'
do
it
'does not raise an error'
do
it
'logs an error and returns'
do
expect
(
subject
).
to
receive
(
:log_error
).
with
(
"Couldn't find project, skipping syncing"
,
project_id:
999
)
expect
{
subject
.
perform
(
999
,
Time
.
now
)
}.
not_to
raise_error
expect
{
subject
.
perform
(
999
,
Time
.
now
)
}.
not_to
raise_error
end
end
end
end
...
...
ee/spec/workers/geo/repository_sync_worker_spec.rb
View file @
fc1df0d3
...
@@ -9,7 +9,7 @@ describe Geo::RepositorySyncWorker, :geo, :clean_gitlab_redis_cache do
...
@@ -9,7 +9,7 @@ describe Geo::RepositorySyncWorker, :geo, :clean_gitlab_redis_cache do
let!
(
:project_in_synced_group
)
{
create
(
:project
,
group:
synced_group
)
}
let!
(
:project_in_synced_group
)
{
create
(
:project
,
group:
synced_group
)
}
let!
(
:unsynced_project
)
{
create
(
:project
)
}
let!
(
:unsynced_project
)
{
create
(
:project
)
}
let
(
:healthy_shard
)
{
project_in_synced_group
.
repository
.
storage
}
let
(
:healthy_shard
_name
)
{
project_in_synced_group
.
repository
.
storage
}
subject
{
described_class
.
new
}
subject
{
described_class
.
new
}
...
@@ -39,13 +39,13 @@ describe Geo::RepositorySyncWorker, :geo, :clean_gitlab_redis_cache do
...
@@ -39,13 +39,13 @@ describe Geo::RepositorySyncWorker, :geo, :clean_gitlab_redis_cache do
end
end
it
'skips backfill for projects on shards excluded by selective sync'
do
it
'skips backfill for projects on shards excluded by selective sync'
do
secondary
.
update!
(
selective_sync_type:
'shards'
,
selective_sync_shards:
[
healthy_shard
])
secondary
.
update!
(
selective_sync_type:
'shards'
,
selective_sync_shards:
[
healthy_shard
_name
])
# Report both shards as healthy
# Report both shards as healthy
expect
(
Gitlab
::
HealthChecks
::
FsShardsCheck
).
to
receive
(
:readiness
)
expect
(
Gitlab
::
HealthChecks
::
FsShardsCheck
).
to
receive
(
:readiness
)
.
and_return
([
result
(
true
,
healthy_shard
),
result
(
true
,
'broken'
)])
.
and_return
([
result
(
true
,
healthy_shard
_name
),
result
(
true
,
'broken'
)])
expect
(
Gitlab
::
HealthChecks
::
GitalyCheck
).
to
receive
(
:readiness
)
expect
(
Gitlab
::
HealthChecks
::
GitalyCheck
).
to
receive
(
:readiness
)
.
and_return
([
result
(
true
,
healthy_shard
),
result
(
true
,
'broken'
)])
.
and_return
([
result
(
true
,
healthy_shard
_name
),
result
(
true
,
'broken'
)])
expect
(
Geo
::
RepositoryShardSyncWorker
).
to
receive
(
:perform_async
).
with
(
'default'
)
expect
(
Geo
::
RepositoryShardSyncWorker
).
to
receive
(
:perform_async
).
with
(
'default'
)
expect
(
Geo
::
RepositoryShardSyncWorker
).
not_to
receive
(
:perform_async
).
with
(
'broken'
)
expect
(
Geo
::
RepositoryShardSyncWorker
).
not_to
receive
(
:perform_async
).
with
(
'broken'
)
...
@@ -78,11 +78,11 @@ describe Geo::RepositorySyncWorker, :geo, :clean_gitlab_redis_cache do
...
@@ -78,11 +78,11 @@ describe Geo::RepositorySyncWorker, :geo, :clean_gitlab_redis_cache do
# Report only one healthy shard
# Report only one healthy shard
expect
(
Gitlab
::
HealthChecks
::
FsShardsCheck
).
to
receive
(
:readiness
)
expect
(
Gitlab
::
HealthChecks
::
FsShardsCheck
).
to
receive
(
:readiness
)
.
and_return
([
result
(
true
,
healthy_shard
),
result
(
true
,
'broken'
)])
.
and_return
([
result
(
true
,
healthy_shard
_name
),
result
(
true
,
'broken'
)])
expect
(
Gitlab
::
HealthChecks
::
GitalyCheck
).
to
receive
(
:readiness
)
expect
(
Gitlab
::
HealthChecks
::
GitalyCheck
).
to
receive
(
:readiness
)
.
and_return
([
result
(
true
,
healthy_shard
),
result
(
false
,
'broken'
)])
.
and_return
([
result
(
true
,
healthy_shard
_name
),
result
(
false
,
'broken'
)])
expect
(
Geo
::
RepositoryShardSyncWorker
).
to
receive
(
:perform_async
).
with
(
healthy_shard
)
expect
(
Geo
::
RepositoryShardSyncWorker
).
to
receive
(
:perform_async
).
with
(
healthy_shard
_name
)
expect
(
Geo
::
RepositoryShardSyncWorker
).
not_to
receive
(
:perform_async
).
with
(
'broken'
)
expect
(
Geo
::
RepositoryShardSyncWorker
).
not_to
receive
(
:perform_async
).
with
(
'broken'
)
subject
.
perform
subject
.
perform
...
...
ee/spec/workers/geo/scheduler/per_shard_scheduler_worker_spec.rb
View file @
fc1df0d3
require
'spec_helper'
require
'spec_helper'
describe
Geo
::
Scheduler
::
PerShardSchedulerWorker
do
describe
Geo
::
Scheduler
::
PerShardSchedulerWorker
do
it
'includes ::Gitlab::Geo::LogHelpers'
do
it
'includes ApplicationWorker'
do
expect
(
described_class
).
to
include_module
(
ApplicationWorker
)
end
it
'includes CronjobQueue'
do
expect
(
described_class
).
to
include_module
(
CronjobQueue
)
end
it
'includes Gitlab::Utils::StrongMemoize'
do
expect
(
described_class
).
to
include_module
(
::
Gitlab
::
Utils
::
StrongMemoize
)
end
it
'includes Gitlab::Geo::LogHelpers'
do
expect
(
described_class
).
to
include_module
(
::
Gitlab
::
Geo
::
LogHelpers
)
expect
(
described_class
).
to
include_module
(
::
Gitlab
::
Geo
::
LogHelpers
)
end
end
it
'needs many other specs'
it
'includes FsShards and Gitaly health checks'
do
expect
(
described_class
::
HEALTHY_SHARD_CHECKS
).
to
include
(
Gitlab
::
HealthChecks
::
FsShardsCheck
,
Gitlab
::
HealthChecks
::
GitalyCheck
)
end
describe
'instance methods'
do
subject
(
:per_shard_scheduler_worker
)
{
described_class
.
new
}
let
(
:default_shard_name
)
{
'default'
}
let
(
:other_shard_name
)
{
'other'
}
let
(
:unhealthy_shard_name
)
{
'unhealthy'
}
let
(
:default_shard
)
{
Gitlab
::
HealthChecks
::
Result
.
new
(
true
,
nil
,
shard:
default_shard_name
)
}
let
(
:other_shard
)
{
Gitlab
::
HealthChecks
::
Result
.
new
(
true
,
nil
,
shard:
other_shard_name
)
}
let
(
:unhealthy_shard
)
{
Gitlab
::
HealthChecks
::
Result
.
new
(
false
,
'14:Connect Failed'
,
shard:
unhealthy_shard_name
)
}
before
do
allow
(
Gitlab
::
HealthChecks
::
FsShardsCheck
).
to
receive
(
:readiness
).
and_return
([
default_shard
,
other_shard
,
unhealthy_shard
])
allow
(
Gitlab
::
HealthChecks
::
GitalyCheck
).
to
receive
(
:readiness
).
and_return
([
default_shard
,
other_shard
,
unhealthy_shard
])
end
describe
'#schedule_job'
do
it
"raises a NotImplementedError exception"
do
expect
do
per_shard_scheduler_worker
.
schedule_job
(
default_shard_name
)
end
.
to
raise_exception
(
NotImplementedError
)
end
end
describe
'#ready_shards'
do
let
(
:ready_shards
)
{
[[
default_shard
,
other_shard
,
unhealthy_shard
],
[
default_shard
,
other_shard
,
unhealthy_shard
]]
}
it
"returns an array of ready shards"
do
expect
(
per_shard_scheduler_worker
.
ready_shards
).
to
eq
(
ready_shards
)
end
end
describe
'#healthy_ready_shards'
do
let
(
:healthy_ready_shards
)
{
[
default_shard
,
other_shard
]
}
it
"returns an array of healthy shard names"
do
expect
(
per_shard_scheduler_worker
.
healthy_ready_shards
).
to
eq
(
healthy_ready_shards
)
end
end
describe
'#healthy_shard_names'
do
it
"returns an array of healthy shard names"
do
expect
(
per_shard_scheduler_worker
.
healthy_shard_names
).
to
eq
([
default_shard_name
,
other_shard_name
])
end
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment