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
d98e4f88
Commit
d98e4f88
authored
Jun 26, 2018
by
Toon Claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extract EachShardWorker into a concern
parent
f63e234b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
0 deletions
+36
-0
app/workers/concerns/each_shard_worker.rb
app/workers/concerns/each_shard_worker.rb
+36
-0
No files found.
app/workers/concerns/each_shard_worker.rb
0 → 100644
View file @
d98e4f88
module
EachShardWorker
extend
ActiveSupport
::
Concern
include
::
Gitlab
::
Utils
::
StrongMemoize
HEALTHY_SHARD_CHECKS
=
[
Gitlab
::
HealthChecks
::
GitalyCheck
].
freeze
def
each_shard
eligible_shard_names
.
each
do
|
shard_name
|
yield
shard_name
end
end
# override when you want to filter out some shards
def
eligible_shard_names
healthy_shard_names
end
def
healthy_shard_names
strong_memoize
(
:healthy_shard_names
)
do
# 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
# as the healthy shards.
healthy_ready_shards
.
map
{
|
result
|
result
.
labels
[
:shard
]
}.
compact
.
uniq
end
end
def
healthy_ready_shards
ready_shards
.
map
{
|
result
|
result
.
select
(
&
:success
)
}.
inject
(
:&
)
end
def
ready_shards
HEALTHY_SHARD_CHECKS
.
map
(
&
:readiness
)
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