Commit 9f4220f8 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Merge branch...

Merge branch '208220-improve-performance-of-the-container-repository-cleanup-tags-service' into 'master'

Improve performance of the container repository cleanup tags service

Closes #208220

See merge request gitlab-org/gitlab!27441
parents e3299e80 d3f5189e
...@@ -8,53 +8,30 @@ module Projects ...@@ -8,53 +8,30 @@ module Projects
return error('access denied') unless can_destroy? return error('access denied') unless can_destroy?
tags = container_repository.tags tags = container_repository.tags
tags_by_digest = group_by_digest(tags)
tags = without_latest(tags) tags = without_latest(tags)
tags = filter_by_name(tags) tags = filter_by_name(tags)
tags = with_manifest(tags)
tags = order_by_date(tags)
tags = filter_keep_n(tags) tags = filter_keep_n(tags)
tags = filter_by_older_than(tags) tags = filter_by_older_than(tags)
deleted_tags = delete_tags(tags, tags_by_digest) delete_tags(container_repository, tags)
success(deleted: deleted_tags.map(&:name))
end end
private private
def delete_tags(tags_to_delete, tags_by_digest) def delete_tags(container_repository, tags)
deleted_digests = group_by_digest(tags_to_delete).select do |digest, tags| return success(deleted: []) unless tags.any?
delete_tag_digest(tags, tags_by_digest[digest])
end
deleted_digests.values.flatten
end
def delete_tag_digest(tags, other_tags)
# Issue: https://gitlab.com/gitlab-org/gitlab-foss/issues/21405
# we have to remove all tags due
# to Docker Distribution bug unable
# to delete single tag
return unless tags.count == other_tags.count
# delete all tags tag_names = tags.map(&:name)
tags.map(&:unsafe_delete)
end
def group_by_digest(tags) Projects::ContainerRepository::DeleteTagsService
tags.group_by(&:digest) .new(container_repository.project, current_user, tags: tag_names)
.execute(container_repository)
end end
def without_latest(tags) def without_latest(tags)
tags.reject(&:latest?) tags.reject(&:latest?)
end end
def with_manifest(tags)
tags.select(&:valid?)
end
def order_by_date(tags) def order_by_date(tags)
now = DateTime.now now = DateTime.now
tags.sort_by { |tag| tag.created_at || now }.reverse tags.sort_by { |tag| tag.created_at || now }.reverse
...@@ -74,6 +51,9 @@ module Projects ...@@ -74,6 +51,9 @@ module Projects
end end
def filter_keep_n(tags) def filter_keep_n(tags)
return tags unless params['keep_n']
tags = order_by_date(tags)
tags.drop(params['keep_n'].to_i) tags.drop(params['keep_n'].to_i)
end end
......
---
title: Improve performance of the container repository cleanup tags service
merge_request: 27441
author:
type: performance
...@@ -41,7 +41,8 @@ describe Projects::ContainerRepository::CleanupTagsService do ...@@ -41,7 +41,8 @@ describe Projects::ContainerRepository::CleanupTagsService do
let(:params) { {} } let(:params) { {} }
it 'does not remove anything' do it 'does not remove anything' do
expect_any_instance_of(ContainerRegistry::Client).not_to receive(:delete_repository_tag_by_digest) expect_any_instance_of(Projects::ContainerRepository::DeleteTagsService)
.not_to receive(:execute)
is_expected.to include(status: :success, deleted: []) is_expected.to include(status: :success, deleted: [])
end end
...@@ -49,15 +50,10 @@ describe Projects::ContainerRepository::CleanupTagsService do ...@@ -49,15 +50,10 @@ describe Projects::ContainerRepository::CleanupTagsService do
context 'when regex matching everything is specified' do context 'when regex matching everything is specified' do
shared_examples 'removes all matches' do shared_examples 'removes all matches' do
it 'does remove B* and C' do it 'does remove all tags except latest' do
# The :A cannot be removed as config is shared with :latest expect_delete(%w(A Ba Bb C D E))
# The :E cannot be removed as it does not have valid manifest
expect_delete('sha256:configB').twice is_expected.to include(status: :success, deleted: %w(A Ba Bb C D E))
expect_delete('sha256:configC')
expect_delete('sha256:configD')
is_expected.to include(status: :success, deleted: %w(D Bb Ba C))
end end
end end
...@@ -82,10 +78,9 @@ describe Projects::ContainerRepository::CleanupTagsService do ...@@ -82,10 +78,9 @@ describe Projects::ContainerRepository::CleanupTagsService do
end end
it 'does remove C and D' do it 'does remove C and D' do
expect_delete('sha256:configC') expect_delete(%w(C D))
expect_delete('sha256:configD')
is_expected.to include(status: :success, deleted: %w(D C)) is_expected.to include(status: :success, deleted: %w(C D))
end end
context 'with overriding allow regex' do context 'with overriding allow regex' do
...@@ -95,7 +90,7 @@ describe Projects::ContainerRepository::CleanupTagsService do ...@@ -95,7 +90,7 @@ describe Projects::ContainerRepository::CleanupTagsService do
end end
it 'does not remove C' do it 'does not remove C' do
expect_delete('sha256:configD') expect_delete(%w(D))
is_expected.to include(status: :success, deleted: %w(D)) is_expected.to include(status: :success, deleted: %w(D))
end end
...@@ -108,36 +103,52 @@ describe Projects::ContainerRepository::CleanupTagsService do ...@@ -108,36 +103,52 @@ describe Projects::ContainerRepository::CleanupTagsService do
end end
it 'does not remove C' do it 'does not remove C' do
expect_delete('sha256:configD') expect_delete(%w(D))
is_expected.to include(status: :success, deleted: %w(D)) is_expected.to include(status: :success, deleted: %w(D))
end end
end end
end end
context 'when removing a tagged image that is used by another tag' do context 'with allow regex value' do
let(:params) do let(:params) do
{ 'name_regex_delete' => 'Ba' } { 'name_regex_delete' => '.*',
'name_regex_keep' => 'B.*' }
end end
it 'does not remove the tag' do it 'does not remove B*' do
# Issue: https://gitlab.com/gitlab-org/gitlab-foss/issues/21405 expect_delete(%w(A C D E))
is_expected.to include(status: :success, deleted: []) is_expected.to include(status: :success, deleted: %w(A C D E))
end end
end end
context 'with allow regex value' do context 'when keeping only N tags' do
let(:params) do let(:params) do
{ 'name_regex_delete' => '.*', { 'name_regex' => 'A|B.*|C',
'name_regex_keep' => 'B.*' } 'keep_n' => 1 }
end end
it 'does not remove B*' do it 'sorts tags by date' do
expect_delete('sha256:configC') expect_delete(%w(Bb Ba C))
expect_delete('sha256:configD')
expect(service).to receive(:order_by_date).and_call_original
is_expected.to include(status: :success, deleted: %w(D C)) is_expected.to include(status: :success, deleted: %w(Bb Ba C))
end
end
context 'when not keeping N tags' do
let(:params) do
{ 'name_regex' => 'A|B.*|C' }
end
it 'does not sort tags by date' do
expect_delete(%w(A Ba Bb C))
expect(service).not_to receive(:order_by_date)
is_expected.to include(status: :success, deleted: %w(A Ba Bb C))
end end
end end
...@@ -147,10 +158,10 @@ describe Projects::ContainerRepository::CleanupTagsService do ...@@ -147,10 +158,10 @@ describe Projects::ContainerRepository::CleanupTagsService do
'keep_n' => 3 } 'keep_n' => 3 }
end end
it 'does remove C as it is oldest' do it 'does remove B* and C as they are the oldest' do
expect_delete('sha256:configC') expect_delete(%w(Bb Ba C))
is_expected.to include(status: :success, deleted: %w(C)) is_expected.to include(status: :success, deleted: %w(Bb Ba C))
end end
end end
...@@ -161,10 +172,9 @@ describe Projects::ContainerRepository::CleanupTagsService do ...@@ -161,10 +172,9 @@ describe Projects::ContainerRepository::CleanupTagsService do
end end
it 'does remove B* and C as they are older than 1 day' do it 'does remove B* and C as they are older than 1 day' do
expect_delete('sha256:configB').twice expect_delete(%w(Ba Bb C))
expect_delete('sha256:configC')
is_expected.to include(status: :success, deleted: %w(Bb Ba C)) is_expected.to include(status: :success, deleted: %w(Ba Bb C))
end end
end end
...@@ -176,8 +186,7 @@ describe Projects::ContainerRepository::CleanupTagsService do ...@@ -176,8 +186,7 @@ describe Projects::ContainerRepository::CleanupTagsService do
end end
it 'does remove B* and C' do it 'does remove B* and C' do
expect_delete('sha256:configB').twice expect_delete(%w(Bb Ba C))
expect_delete('sha256:configC')
is_expected.to include(status: :success, deleted: %w(Bb Ba C)) is_expected.to include(status: :success, deleted: %w(Bb Ba C))
end end
...@@ -195,8 +204,7 @@ describe Projects::ContainerRepository::CleanupTagsService do ...@@ -195,8 +204,7 @@ describe Projects::ContainerRepository::CleanupTagsService do
end end
it 'succeeds without a user' do it 'succeeds without a user' do
expect_delete('sha256:configB').twice expect_delete(%w(Bb Ba C))
expect_delete('sha256:configC')
is_expected.to include(status: :success, deleted: %w(Bb Ba C)) is_expected.to include(status: :success, deleted: %w(Bb Ba C))
end end
...@@ -238,9 +246,14 @@ describe Projects::ContainerRepository::CleanupTagsService do ...@@ -238,9 +246,14 @@ describe Projects::ContainerRepository::CleanupTagsService do
end end
end end
def expect_delete(digest) def expect_delete(tags)
expect_any_instance_of(ContainerRegistry::Client) expect(Projects::ContainerRepository::DeleteTagsService)
.to receive(:delete_repository_tag_by_digest) .to receive(:new)
.with(repository.path, digest) { true } .with(repository.project, user, tags: tags)
.and_call_original
expect_any_instance_of(Projects::ContainerRepository::DeleteTagsService)
.to receive(:execute)
.with(repository) { { status: :success, deleted: tags } }
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment