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
ac251e9f
Commit
ac251e9f
authored
Mar 13, 2020
by
Douglas Barbosa Alexandre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix ambiguous reference while cleaning up migrated local files
parent
09e0f794
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
132 additions
and
31 deletions
+132
-31
ee/app/workers/geo/migrated_local_files_clean_up_worker.rb
ee/app/workers/geo/migrated_local_files_clean_up_worker.rb
+2
-2
ee/spec/workers/geo/migrated_local_files_clean_up_worker_spec.rb
.../workers/geo/migrated_local_files_clean_up_worker_spec.rb
+130
-29
No files found.
ee/app/workers/geo/migrated_local_files_clean_up_worker.rb
View file @
ac251e9f
...
...
@@ -49,7 +49,7 @@ module Geo
return
[]
unless
lfs_objects_object_store_enabled?
lfs_objects_finder
.
find_migrated_local
(
batch_size:
batch_size
,
except_ids:
scheduled_file_ids
(
:lfs
))
.
pluck
(
:id
)
.
pluck
(
Geo
::
Fdw
::
LfsObject
.
arel_table
[
:id
]
)
.
map
{
|
id
|
[
'lfs'
,
id
]
}
end
# rubocop: enable CodeReuse/ActiveRecord
...
...
@@ -59,7 +59,7 @@ module Geo
return
[]
unless
attachments_object_store_enabled?
attachments_finder
.
find_migrated_local
(
batch_size:
batch_size
,
except_ids:
scheduled_file_ids
(
Gitlab
::
Geo
::
Replication
::
USER_UPLOADS_OBJECT_TYPES
))
.
pluck
(
:uploader
,
:id
)
.
pluck
(
Geo
::
Fdw
::
Upload
.
arel_table
[
:uploader
],
Geo
::
Fdw
::
Upload
.
arel_table
[
:id
]
)
.
map
{
|
uploader
,
id
|
[
uploader
.
sub
(
/Uploader\z/
,
''
).
underscore
,
id
]
}
end
# rubocop: enable CodeReuse/ActiveRecord
...
...
ee/spec/workers/geo/migrated_local_files_clean_up_worker_spec.rb
View file @
ac251e9f
...
...
@@ -9,6 +9,11 @@ describe Geo::MigratedLocalFilesCleanUpWorker, :geo, :geo_fdw, :use_sql_query_ca
let
(
:primary
)
{
create
(
:geo_node
,
:primary
,
host:
'primary-geo-node'
)
}
let
(
:secondary
)
{
create
(
:geo_node
,
:local_storage_only
)
}
let
(
:synced_group
)
{
create
(
:group
)
}
let
(
:synced_project
)
{
create
(
:project
,
group:
synced_group
)
}
let
(
:unsynced_project
)
{
create
(
:project
)
}
let
(
:project_broken_storage
)
{
create
(
:project
,
:broken_storage
)
}
before
do
stub_current_geo_node
(
secondary
)
stub_exclusive_lease
(
renew:
true
)
...
...
@@ -32,27 +37,57 @@ describe Geo::MigratedLocalFilesCleanUpWorker, :geo, :geo_fdw, :use_sql_query_ca
context
'with LFS objects'
do
let
(
:lfs_object_local
)
{
create
(
:lfs_object
)
}
let
(
:lfs_object_remote
)
{
create
(
:lfs_object
,
:object_storage
)
}
let
(
:lfs_object_remote_1
)
{
create
(
:lfs_object
,
:object_storage
)
}
let
(
:lfs_object_remote_2
)
{
create
(
:lfs_object
,
:object_storage
)
}
before
do
stub_lfs_object_storage
create
(
:geo_lfs_object_registry
,
lfs_object_id:
lfs_object_local
.
id
)
create
(
:geo_lfs_object_registry
,
lfs_object_id:
lfs_object_remote
.
id
)
create
(
:geo_lfs_object_registry
,
lfs_object_id:
lfs_object_remote
_1
.
id
)
end
it
'schedules
job
for file stored remotely and synced locally'
do
expect
(
subject
).
to
receive
(
:schedule_job
).
with
(
'lfs'
,
lfs_object_remote
.
id
)
expect
(
subject
).
not_to
receive
(
:schedule_job
).
with
(
anything
,
lfs_object_local
.
id
)
it
'schedules
worker
for file stored remotely and synced locally'
do
expect
(
Geo
::
FileRegistryRemovalWorker
).
to
receive
(
:perform_async
).
with
(
'lfs'
,
lfs_object_remote_1
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
not_to
receive
(
:perform_async
).
with
(
anything
,
lfs_object_local
.
id
)
subject
.
perform
end
it
'schedules worker for file stored remotely and synced locally'
do
expect
(
Geo
::
FileRegistryRemovalWorker
).
to
receive
(
:perform_async
).
with
(
'lfs'
,
lfs_object_remote
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
not_to
receive
(
:perform_async
).
with
(
anything
,
lfs_object_local
.
id
)
context
'with selective sync by namespace'
do
let
(
:secondary
)
{
create
(
:geo_node
,
:local_storage_only
,
selective_sync_type:
'namespaces'
,
namespaces:
[
synced_group
])
}
subject
.
perform
before
do
create
(
:lfs_objects_project
,
project:
synced_project
,
lfs_object:
lfs_object_local
)
create
(
:lfs_objects_project
,
project:
synced_project
,
lfs_object:
lfs_object_remote_1
)
create
(
:lfs_objects_project
,
project:
unsynced_project
,
lfs_object:
lfs_object_remote_2
)
end
it
'schedules worker for file stored remotely and synced locally'
do
expect
(
Geo
::
FileRegistryRemovalWorker
).
to
receive
(
:perform_async
).
with
(
'lfs'
,
lfs_object_remote_1
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
not_to
receive
(
:perform_async
).
with
(
anything
,
lfs_object_remote_2
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
not_to
receive
(
:perform_async
).
with
(
anything
,
lfs_object_local
.
id
)
subject
.
perform
end
end
context
'with selective sync by shard'
do
let
(
:secondary
)
{
create
(
:geo_node
,
:local_storage_only
,
selective_sync_type:
'shards'
,
selective_sync_shards:
[
'broken'
])
}
before
do
create
(
:lfs_objects_project
,
project:
project_broken_storage
,
lfs_object:
lfs_object_local
)
create
(
:lfs_objects_project
,
project:
project_broken_storage
,
lfs_object:
lfs_object_remote_1
)
create
(
:lfs_objects_project
,
project:
synced_project
,
lfs_object:
lfs_object_remote_2
)
end
it
'schedules worker for file stored remotely and synced locally'
do
expect
(
Geo
::
FileRegistryRemovalWorker
).
to
receive
(
:perform_async
).
with
(
'lfs'
,
lfs_object_remote_1
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
not_to
receive
(
:perform_async
).
with
(
anything
,
lfs_object_remote_2
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
not_to
receive
(
:perform_async
).
with
(
anything
,
lfs_object_local
.
id
)
subject
.
perform
end
end
end
...
...
@@ -101,17 +136,6 @@ describe Geo::MigratedLocalFilesCleanUpWorker, :geo, :geo_fdw, :use_sql_query_ca
favicon_upload
.
update_column
(
:store
,
FileUploader
::
Store
::
REMOTE
)
end
it
'schedules jobs for uploads stored remotely and synced locally'
do
expect
(
subject
).
to
receive
(
:schedule_job
).
with
(
'avatar'
,
avatar_upload
.
id
)
expect
(
subject
).
to
receive
(
:schedule_job
).
with
(
'personal_file'
,
personal_snippet_upload
.
id
)
expect
(
subject
).
to
receive
(
:schedule_job
).
with
(
'file'
,
issuable_upload
.
id
)
expect
(
subject
).
to
receive
(
:schedule_job
).
with
(
'namespace_file'
,
namespace_upload
.
id
)
expect
(
subject
).
to
receive
(
:schedule_job
).
with
(
'attachment'
,
attachment_upload
.
id
)
expect
(
subject
).
to
receive
(
:schedule_job
).
with
(
'favicon'
,
favicon_upload
.
id
)
subject
.
perform
end
it
'schedules workers for uploads stored remotely and synced locally'
do
expect
(
Geo
::
FileRegistryRemovalWorker
).
to
receive
(
:perform_async
).
with
(
'avatar'
,
avatar_upload
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
to
receive
(
:perform_async
).
with
(
'personal_file'
,
personal_snippet_upload
.
id
)
...
...
@@ -122,32 +146,109 @@ describe Geo::MigratedLocalFilesCleanUpWorker, :geo, :geo_fdw, :use_sql_query_ca
subject
.
perform
end
context
'with selective sync by namespace'
do
let
(
:issuable_upload_synced_group
)
{
create
(
:upload
,
:issuable_upload
,
model:
synced_project
)
}
let
(
:secondary
)
{
create
(
:geo_node
,
:local_storage_only
,
selective_sync_type:
'namespaces'
,
namespaces:
[
synced_group
])
}
before
do
create
(
:geo_upload_registry
,
:file
,
file_id:
issuable_upload_synced_group
.
id
)
issuable_upload_synced_group
.
update_column
(
:store
,
FileUploader
::
Store
::
REMOTE
)
end
it
'schedules workers for uploads stored remotely and synced locally'
do
expect
(
Geo
::
FileRegistryRemovalWorker
).
to
receive
(
:perform_async
).
with
(
'file'
,
issuable_upload_synced_group
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
to
receive
(
:perform_async
).
with
(
'favicon'
,
favicon_upload
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
to
receive
(
:perform_async
).
with
(
'personal_file'
,
personal_snippet_upload
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
to
receive
(
:perform_async
).
with
(
'attachment'
,
attachment_upload
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
not_to
receive
(
:perform_async
).
with
(
'avatar'
,
avatar_upload
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
not_to
receive
(
:perform_async
).
with
(
'file'
,
issuable_upload
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
not_to
receive
(
:perform_async
).
with
(
'namespace_file'
,
namespace_upload
.
id
)
subject
.
perform
end
end
context
'with selective sync by shard'
do
let
(
:issuable_upload_synced_group
)
{
create
(
:upload
,
:issuable_upload
,
model:
project_broken_storage
)
}
let
(
:secondary
)
{
create
(
:geo_node
,
:local_storage_only
,
selective_sync_type:
'shards'
,
selective_sync_shards:
[
'broken'
])
}
before
do
create
(
:geo_upload_registry
,
:file
,
file_id:
issuable_upload_synced_group
.
id
)
issuable_upload_synced_group
.
update_column
(
:store
,
FileUploader
::
Store
::
REMOTE
)
end
it
'schedules workers for uploads stored remotely and synced locally'
do
expect
(
Geo
::
FileRegistryRemovalWorker
).
to
receive
(
:perform_async
).
with
(
'file'
,
issuable_upload_synced_group
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
to
receive
(
:perform_async
).
with
(
'favicon'
,
favicon_upload
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
to
receive
(
:perform_async
).
with
(
'personal_file'
,
personal_snippet_upload
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
to
receive
(
:perform_async
).
with
(
'attachment'
,
attachment_upload
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
not_to
receive
(
:perform_async
).
with
(
'avatar'
,
avatar_upload
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
not_to
receive
(
:perform_async
).
with
(
'file'
,
issuable_upload
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
not_to
receive
(
:perform_async
).
with
(
'namespace_file'
,
namespace_upload
.
id
)
subject
.
perform
end
end
end
end
context
'with job artifacts'
do
let
(
:job_artifact_local
)
{
create
(
:ci_job_artifact
)
}
let
(
:job_artifact_remote
)
{
create
(
:ci_job_artifact
,
:remote_store
)
}
let
(
:job_artifact_remote
_1
)
{
create
(
:ci_job_artifact
,
:remote_store
,
project:
synced_project
)
}
before
do
stub_artifacts_object_storage
create
(
:geo_job_artifact_registry
,
artifact_id:
job_artifact_local
.
id
)
create
(
:geo_job_artifact_registry
,
artifact_id:
job_artifact_remote
.
id
)
create
(
:geo_job_artifact_registry
,
artifact_id:
job_artifact_remote
_1
.
id
)
end
it
'schedules
job
for artifact stored remotely and synced locally'
do
expect
(
subject
).
to
receive
(
:schedule_job
).
with
(
'job_artifact'
,
job_artifact_remote
.
id
)
expect
(
subject
).
not_to
receive
(
:schedule_job
).
with
(
anything
,
job_artifact_local
.
id
)
it
'schedules
worker
for artifact stored remotely and synced locally'
do
expect
(
Geo
::
FileRegistryRemovalWorker
).
to
receive
(
:perform_async
).
with
(
'job_artifact'
,
job_artifact_remote_1
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
not_to
receive
(
:perform_async
).
with
(
anything
,
job_artifact_local
.
id
)
subject
.
perform
end
it
'schedules worker for artifact stored remotely and synced locally'
do
expect
(
Geo
::
FileRegistryRemovalWorker
).
to
receive
(
:perform_async
).
with
(
'job_artifact'
,
job_artifact_remote
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
not_to
receive
(
:perform_async
).
with
(
anything
,
job_artifact_local
.
id
)
context
'with selective sync by namespace'
do
let
(
:job_artifact_remote_2
)
{
create
(
:ci_job_artifact
,
:remote_store
,
project:
project_broken_storage
)
}
subject
.
perform
let
(
:secondary
)
{
create
(
:geo_node
,
:local_storage_only
,
selective_sync_type:
'shards'
,
selective_sync_shards:
[
'broken'
])
}
before
do
create
(
:geo_job_artifact_registry
,
artifact_id:
job_artifact_remote_2
.
id
)
end
it
'schedules worker for artifact stored remotely and synced locally'
do
expect
(
Geo
::
FileRegistryRemovalWorker
).
to
receive
(
:perform_async
).
with
(
'job_artifact'
,
job_artifact_remote_2
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
not_to
receive
(
:perform_async
).
with
(
anything
,
job_artifact_remote_1
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
not_to
receive
(
:perform_async
).
with
(
anything
,
job_artifact_local
.
id
)
subject
.
perform
end
end
context
'with selective sync by shard'
do
let
(
:job_artifact_remote_2
)
{
create
(
:ci_job_artifact
,
:remote_store
,
project:
unsynced_project
)
}
let
(
:secondary
)
{
create
(
:geo_node
,
:local_storage_only
,
selective_sync_type:
'namespaces'
,
namespaces:
[
synced_group
])
}
before
do
create
(
:geo_job_artifact_registry
,
artifact_id:
job_artifact_remote_2
.
id
)
end
it
'schedules worker for artifact stored remotely and synced locally'
do
expect
(
Geo
::
FileRegistryRemovalWorker
).
to
receive
(
:perform_async
).
with
(
'job_artifact'
,
job_artifact_remote_1
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
not_to
receive
(
:perform_async
).
with
(
anything
,
job_artifact_remote_2
.
id
)
expect
(
Geo
::
FileRegistryRemovalWorker
).
not_to
receive
(
:perform_async
).
with
(
anything
,
job_artifact_local
.
id
)
subject
.
perform
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