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
3c34e90f
Commit
3c34e90f
authored
May 01, 2018
by
Michael Kozono
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename affected “local” registry finder methods
parent
e6a64aac
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
52 additions
and
52 deletions
+52
-52
ee/app/finders/geo/attachment_registry_finder.rb
ee/app/finders/geo/attachment_registry_finder.rb
+10
-10
ee/app/finders/geo/job_artifact_registry_finder.rb
ee/app/finders/geo/job_artifact_registry_finder.rb
+7
-7
ee/app/finders/geo/lfs_object_registry_finder.rb
ee/app/finders/geo/lfs_object_registry_finder.rb
+7
-7
ee/app/models/geo_node_status.rb
ee/app/models/geo_node_status.rb
+12
-12
ee/spec/finders/geo/attachment_registry_finder_spec.rb
ee/spec/finders/geo/attachment_registry_finder_spec.rb
+6
-6
ee/spec/finders/geo/job_artifact_registry_finder_spec.rb
ee/spec/finders/geo/job_artifact_registry_finder_spec.rb
+5
-5
ee/spec/finders/geo/lfs_object_registry_finder_spec.rb
ee/spec/finders/geo/lfs_object_registry_finder_spec.rb
+5
-5
No files found.
ee/app/finders/geo/attachment_registry_finder.rb
View file @
3c34e90f
...
...
@@ -8,12 +8,12 @@ module Geo
end
end
def
local
_attachments
def
syncable
_attachments
attachments
.
geo_syncable
end
def
count_
local
_attachments
local
_attachments
.
count
def
count_
syncable
_attachments
syncable
_attachments
.
count
end
def
count_synced_attachments
...
...
@@ -152,14 +152,14 @@ module Geo
#
def
fdw_find_synced_attachments
fdw_find_
local
_attachments
.
merge
(
Geo
::
FileRegistry
.
synced
)
fdw_find_
syncable
_attachments
.
merge
(
Geo
::
FileRegistry
.
synced
)
end
def
fdw_find_failed_attachments
fdw_find_
local
_attachments
.
merge
(
Geo
::
FileRegistry
.
failed
)
fdw_find_
syncable
_attachments
.
merge
(
Geo
::
FileRegistry
.
failed
)
end
def
fdw_find_
local
_attachments
def
fdw_find_
syncable
_attachments
fdw_attachments
.
joins
(
"INNER JOIN file_registry ON file_registry.file_id =
#{
fdw_attachments_table
}
.id"
)
.
geo_syncable
.
merge
(
Geo
::
FileRegistry
.
attachments
)
...
...
@@ -205,7 +205,7 @@ module Geo
def
legacy_find_synced_attachments
legacy_inner_join_registry_ids
(
local
_attachments
,
syncable
_attachments
,
Geo
::
FileRegistry
.
attachments
.
synced
.
pluck
(
:file_id
),
Upload
)
...
...
@@ -213,7 +213,7 @@ module Geo
def
legacy_find_failed_attachments
legacy_inner_join_registry_ids
(
local
_attachments
,
syncable
_attachments
,
find_failed_attachments_registries
.
pluck
(
:file_id
),
Upload
)
...
...
@@ -223,7 +223,7 @@ module Geo
registry_file_ids
=
legacy_pluck_registry_file_ids
(
file_types:
Geo
::
FileService
::
DEFAULT_OBJECT_TYPES
)
|
except_file_ids
legacy_left_outer_join_registry_ids
(
local
_attachments
,
syncable
_attachments
,
registry_file_ids
,
Upload
)
...
...
@@ -241,7 +241,7 @@ module Geo
def
legacy_find_synced_missing_on_primary_attachments
legacy_inner_join_registry_ids
(
local
_attachments
,
syncable
_attachments
,
Geo
::
FileRegistry
.
attachments
.
synced
.
missing_on_primary
.
pluck
(
:file_id
),
Upload
)
...
...
ee/app/finders/geo/job_artifact_registry_finder.rb
View file @
3c34e90f
module
Geo
class
JobArtifactRegistryFinder
<
RegistryFinder
def
count_
local
_job_artifacts
local
_job_artifacts
.
count
def
count_
syncable
_job_artifacts
syncable
_job_artifacts
.
count
end
def
count_synced_job_artifacts
...
...
@@ -72,7 +72,7 @@ module Geo
end
end
def
local
_job_artifacts
def
syncable
_job_artifacts
job_artifacts
.
geo_syncable
end
...
...
@@ -170,7 +170,7 @@ module Geo
def
legacy_find_synced_job_artifacts
legacy_inner_join_registry_ids
(
local
_job_artifacts
,
syncable
_job_artifacts
,
find_synced_job_artifacts_registries
.
pluck
(
:artifact_id
),
Ci
::
JobArtifact
)
...
...
@@ -178,7 +178,7 @@ module Geo
def
legacy_find_failed_job_artifacts
legacy_inner_join_registry_ids
(
local
_job_artifacts
,
syncable
_job_artifacts
,
find_failed_job_artifacts_registries
.
pluck
(
:artifact_id
),
Ci
::
JobArtifact
)
...
...
@@ -188,7 +188,7 @@ module Geo
registry_artifact_ids
=
legacy_pluck_artifact_ids
(
include_registry_ids:
except_artifact_ids
)
legacy_left_outer_join_registry_ids
(
local
_job_artifacts
,
syncable
_job_artifacts
,
registry_artifact_ids
,
Ci
::
JobArtifact
)
...
...
@@ -211,7 +211,7 @@ module Geo
def
legacy_find_synced_missing_on_primary_job_artifacts
legacy_inner_join_registry_ids
(
local
_job_artifacts
,
syncable
_job_artifacts
,
find_synced_missing_on_primary_job_artifacts_registries
.
pluck
(
:artifact_id
),
Ci
::
JobArtifact
)
...
...
ee/app/finders/geo/lfs_object_registry_finder.rb
View file @
3c34e90f
module
Geo
class
LfsObjectRegistryFinder
<
FileRegistryFinder
def
count_
local
_lfs_objects
local
_lfs_objects
.
count
def
count_
syncable
_lfs_objects
syncable
_lfs_objects
.
count
end
def
count_synced_lfs_objects
...
...
@@ -72,7 +72,7 @@ module Geo
end
end
def
local
_lfs_objects
def
syncable
_lfs_objects
lfs_objects
.
geo_syncable
end
...
...
@@ -172,7 +172,7 @@ module Geo
def
legacy_find_synced_lfs_objects
legacy_inner_join_registry_ids
(
local
_lfs_objects
,
syncable
_lfs_objects
,
Geo
::
FileRegistry
.
lfs_objects
.
synced
.
pluck
(
:file_id
),
LfsObject
)
...
...
@@ -180,7 +180,7 @@ module Geo
def
legacy_find_failed_lfs_objects
legacy_inner_join_registry_ids
(
local
_lfs_objects
,
syncable
_lfs_objects
,
find_failed_lfs_objects_registries
.
pluck
(
:file_id
),
LfsObject
)
...
...
@@ -190,7 +190,7 @@ module Geo
registry_file_ids
=
legacy_pluck_registry_file_ids
(
file_types: :lfs
)
|
except_file_ids
legacy_left_outer_join_registry_ids
(
local
_lfs_objects
,
syncable
_lfs_objects
,
registry_file_ids
,
LfsObject
)
...
...
@@ -208,7 +208,7 @@ module Geo
def
legacy_find_synced_missing_on_primary_lfs_objects
legacy_inner_join_registry_ids
(
local
_lfs_objects
,
syncable
_lfs_objects
,
Geo
::
FileRegistry
.
lfs_objects
.
synced
.
missing_on_primary
.
pluck
(
:file_id
),
LfsObject
)
...
...
ee/app/models/geo_node_status.rb
View file @
3c34e90f
...
...
@@ -39,19 +39,19 @@ class GeoNodeStatus < ActiveRecord::Base
wikis_verified_count:
'Number of wikis verified on secondary'
,
wikis_verification_failed_count:
'Number of wikis failed to verify on secondary'
,
wikis_checksum_mismatch_count:
'Number of wikis that checksum mismatch on secondary'
,
lfs_objects_count:
'Total number of
local
LFS objects available on primary'
,
lfs_objects_synced_count:
'Number of
local
LFS objects synced on secondary'
,
lfs_objects_failed_count:
'Number of
local
LFS objects failed to sync on secondary'
,
lfs_objects_count:
'Total number of
syncable
LFS objects available on primary'
,
lfs_objects_synced_count:
'Number of
syncable
LFS objects synced on secondary'
,
lfs_objects_failed_count:
'Number of
syncable
LFS objects failed to sync on secondary'
,
lfs_objects_registry_count:
'Number of LFS objects in the registry'
,
lfs_objects_synced_missing_on_primary_count:
'Number of LFS objects marked as synced due to the file missing on the primary'
,
job_artifacts_count:
'Total number of
local
job artifacts available on primary'
,
job_artifacts_synced_count:
'Number of
local
job artifacts synced on secondary'
,
job_artifacts_failed_count:
'Number of
local
job artifacts failed to sync on secondary'
,
job_artifacts_count:
'Total number of
syncable
job artifacts available on primary'
,
job_artifacts_synced_count:
'Number of
syncable
job artifacts synced on secondary'
,
job_artifacts_failed_count:
'Number of
syncable
job artifacts failed to sync on secondary'
,
job_artifacts_registry_count:
'Number of job artifacts in the registry'
,
job_artifacts_synced_missing_on_primary_count:
'Number of job artifacts marked as synced due to the file missing on the primary'
,
attachments_count:
'Total number of
local
file attachments available on primary'
,
attachments_synced_count:
'Number of
local
file attachments synced on secondary'
,
attachments_failed_count:
'Number of
local
file attachments failed to sync on secondary'
,
attachments_count:
'Total number of
syncable
file attachments available on primary'
,
attachments_synced_count:
'Number of
syncable
file attachments synced on secondary'
,
attachments_failed_count:
'Number of
syncable
file attachments failed to sync on secondary'
,
attachments_registry_count:
'Number of attachments in the registry'
,
attachments_synced_missing_on_primary_count:
'Number of attachments marked as synced due to the file missing on the primary'
,
replication_slots_count:
'Total number of replication slots on the primary'
,
...
...
@@ -150,9 +150,9 @@ class GeoNodeStatus < ActiveRecord::Base
self
.
last_event_date
=
latest_event
&
.
created_at
self
.
repositories_count
=
projects_finder
.
count_repositories
self
.
wikis_count
=
projects_finder
.
count_wikis
self
.
lfs_objects_count
=
lfs_objects_finder
.
count_
local
_lfs_objects
self
.
job_artifacts_count
=
job_artifacts_finder
.
count_
local
_job_artifacts
self
.
attachments_count
=
attachments_finder
.
count_
local
_attachments
self
.
lfs_objects_count
=
lfs_objects_finder
.
count_
syncable
_lfs_objects
self
.
job_artifacts_count
=
job_artifacts_finder
.
count_
syncable
_job_artifacts
self
.
attachments_count
=
attachments_finder
.
count_
syncable
_attachments
self
.
last_successful_status_check_at
=
Time
.
now
self
.
storage_shards
=
StorageShard
.
all
...
...
ee/spec/finders/geo/attachment_registry_finder_spec.rb
View file @
3c34e90f
...
...
@@ -30,7 +30,7 @@ describe Geo::AttachmentRegistryFinder, :geo do
end
shared_examples
'counts all the things'
do
describe
'#count_
local
_attachments'
do
describe
'#count_
syncable
_attachments'
do
before
do
upload_1
upload_2
...
...
@@ -39,13 +39,13 @@ describe Geo::AttachmentRegistryFinder, :geo do
end
it
'counts attachments'
do
expect
(
subject
.
count_
local
_attachments
).
to
eq
4
expect
(
subject
.
count_
syncable
_attachments
).
to
eq
4
end
it
'ignores remote attachments'
do
upload_1
.
update!
(
store:
ObjectStorage
::
Store
::
REMOTE
)
expect
(
subject
.
count_
local
_attachments
).
to
eq
3
expect
(
subject
.
count_
syncable
_attachments
).
to
eq
3
end
context
'with selective sync'
do
...
...
@@ -54,13 +54,13 @@ describe Geo::AttachmentRegistryFinder, :geo do
end
it
'counts attachments'
do
expect
(
subject
.
count_
local
_attachments
).
to
eq
2
expect
(
subject
.
count_
syncable
_attachments
).
to
eq
2
end
it
'ignores remote attachments'
do
upload_1
.
update!
(
store:
ObjectStorage
::
Store
::
REMOTE
)
expect
(
subject
.
count_
local
_attachments
).
to
eq
1
expect
(
subject
.
count_
syncable
_attachments
).
to
eq
1
end
end
end
...
...
@@ -286,7 +286,7 @@ describe Geo::AttachmentRegistryFinder, :geo do
expect
(
synced_attachments
).
to
match_ids
(
upload_1
,
upload_2
,
upload_6
,
upload_7
)
end
it
'only finds
local
attachments'
do
it
'only finds
syncable
attachments'
do
create
(
:geo_file_registry
,
:avatar
,
file_id:
upload_1
.
id
)
create
(
:geo_file_registry
,
:avatar
,
file_id:
upload_2
.
id
)
upload_1
.
update!
(
store:
ObjectStorage
::
Store
::
REMOTE
)
...
...
ee/spec/finders/geo/job_artifact_registry_finder_spec.rb
View file @
3c34e90f
...
...
@@ -23,7 +23,7 @@ describe Geo::JobArtifactRegistryFinder, :geo do
end
shared_examples
'counts all the things'
do
describe
'#count_
local
_job_artifacts'
do
describe
'#count_
syncable
_job_artifacts'
do
before
do
job_artifact_1
job_artifact_2
...
...
@@ -32,13 +32,13 @@ describe Geo::JobArtifactRegistryFinder, :geo do
end
it
'counts job artifacts'
do
expect
(
subject
.
count_
local
_job_artifacts
).
to
eq
4
expect
(
subject
.
count_
syncable
_job_artifacts
).
to
eq
4
end
it
'ignores remote job artifacts'
do
job_artifact_1
.
update_column
(
:file_store
,
ObjectStorage
::
Store
::
REMOTE
)
expect
(
subject
.
count_
local
_job_artifacts
).
to
eq
3
expect
(
subject
.
count_
syncable
_job_artifacts
).
to
eq
3
end
context
'with selective sync'
do
...
...
@@ -47,13 +47,13 @@ describe Geo::JobArtifactRegistryFinder, :geo do
end
it
'counts job artifacts'
do
expect
(
subject
.
count_
local
_job_artifacts
).
to
eq
2
expect
(
subject
.
count_
syncable
_job_artifacts
).
to
eq
2
end
it
'ignores remote job artifacts'
do
job_artifact_1
.
update_column
(
:file_store
,
ObjectStorage
::
Store
::
REMOTE
)
expect
(
subject
.
count_
local
_job_artifacts
).
to
eq
1
expect
(
subject
.
count_
syncable
_job_artifacts
).
to
eq
1
end
end
end
...
...
ee/spec/finders/geo/lfs_object_registry_finder_spec.rb
View file @
3c34e90f
...
...
@@ -23,7 +23,7 @@ describe Geo::LfsObjectRegistryFinder, :geo do
end
shared_examples
'counts all the things'
do
describe
'#count_
local
_lfs_objects'
do
describe
'#count_
syncable
_lfs_objects'
do
before
do
lfs_object_1
lfs_object_2
...
...
@@ -32,13 +32,13 @@ describe Geo::LfsObjectRegistryFinder, :geo do
end
it
'counts LFS objects'
do
expect
(
subject
.
count_
local
_lfs_objects
).
to
eq
4
expect
(
subject
.
count_
syncable
_lfs_objects
).
to
eq
4
end
it
'ignores remote LFS objects'
do
lfs_object_1
.
update_column
(
:file_store
,
ObjectStorage
::
Store
::
REMOTE
)
expect
(
subject
.
count_
local
_lfs_objects
).
to
eq
3
expect
(
subject
.
count_
syncable
_lfs_objects
).
to
eq
3
end
context
'with selective sync'
do
...
...
@@ -53,13 +53,13 @@ describe Geo::LfsObjectRegistryFinder, :geo do
end
it
'counts LFS objects'
do
expect
(
subject
.
count_
local
_lfs_objects
).
to
eq
2
expect
(
subject
.
count_
syncable
_lfs_objects
).
to
eq
2
end
it
'ignores remote LFS objects'
do
lfs_object_1
.
update_column
(
:file_store
,
ObjectStorage
::
Store
::
REMOTE
)
expect
(
subject
.
count_
local
_lfs_objects
).
to
eq
1
expect
(
subject
.
count_
syncable
_lfs_objects
).
to
eq
1
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