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
b403ff3b
Commit
b403ff3b
authored
Jan 24, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
30462af1
a59563a1
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
264 additions
and
5 deletions
+264
-5
app/models/ci/job_artifact.rb
app/models/ci/job_artifact.rb
+2
-0
app/policies/personal_snippet_policy.rb
app/policies/personal_snippet_policy.rb
+2
-0
app/services/ci/destroy_expired_job_artifacts_service.rb
app/services/ci/destroy_expired_job_artifacts_service.rb
+38
-0
app/workers/expire_build_artifacts_worker.rb
app/workers/expire_build_artifacts_worker.rb
+13
-1
changelogs/unreleased/51754-admin-view-private-personal-snippets.yml
...unreleased/51754-admin-view-private-personal-snippets.yml
+5
-0
changelogs/unreleased/expire-job-artifacts-worker.yml
changelogs/unreleased/expire-job-artifacts-worker.yml
+5
-0
lib/gitlab/loop_helpers.rb
lib/gitlab/loop_helpers.rb
+24
-0
spec/lib/gitlab/loop_helpers_spec.rb
spec/lib/gitlab/loop_helpers_spec.rb
+45
-0
spec/models/event_spec.rb
spec/models/event_spec.rb
+1
-4
spec/policies/personal_snippet_policy_spec.rb
spec/policies/personal_snippet_policy_spec.rb
+11
-0
spec/services/ci/destroy_expired_job_artifacts_service_spec.rb
...services/ci/destroy_expired_job_artifacts_service_spec.rb
+104
-0
spec/workers/expire_build_artifacts_worker_spec.rb
spec/workers/expire_build_artifacts_worker_spec.rb
+14
-0
No files found.
app/models/ci/job_artifact.rb
View file @
b403ff3b
...
@@ -73,6 +73,8 @@ module Ci
...
@@ -73,6 +73,8 @@ module Ci
where
(
file_type:
types
)
where
(
file_type:
types
)
end
end
scope
:expired
,
->
(
limit
)
{
where
(
'expire_at < ?'
,
Time
.
now
).
limit
(
limit
)
}
delegate
:filename
,
:exists?
,
:open
,
to: :file
delegate
:filename
,
:exists?
,
:open
,
to: :file
enum
file_type:
{
enum
file_type:
{
...
...
app/policies/personal_snippet_policy.rb
View file @
b403ff3b
...
@@ -29,4 +29,6 @@ class PersonalSnippetPolicy < BasePolicy
...
@@ -29,4 +29,6 @@ class PersonalSnippetPolicy < BasePolicy
rule
{
anonymous
}.
prevent
:comment_personal_snippet
rule
{
anonymous
}.
prevent
:comment_personal_snippet
rule
{
can?
(
:comment_personal_snippet
)
}.
enable
:award_emoji
rule
{
can?
(
:comment_personal_snippet
)
}.
enable
:award_emoji
rule
{
full_private_access
}.
enable
:read_personal_snippet
end
end
app/services/ci/destroy_expired_job_artifacts_service.rb
0 → 100644
View file @
b403ff3b
# frozen_string_literal: true
module
Ci
class
DestroyExpiredJobArtifactsService
include
::
Gitlab
::
ExclusiveLeaseHelpers
include
::
Gitlab
::
LoopHelpers
BATCH_SIZE
=
100
LOOP_TIMEOUT
=
45
.
minutes
LOOP_LIMIT
=
1000
EXCLUSIVE_LOCK_KEY
=
'expired_job_artifacts:destroy:lock'
LOCK_TIMEOUT
=
50
.
minutes
##
# Destroy expired job artifacts on GitLab instance
#
# This destroy process cannot run for more than 45 minutes. This is for
# preventing multiple `ExpireBuildArtifactsWorker` CRON jobs run concurrently,
# which is scheduled at every hour.
def
execute
in_lock
(
EXCLUSIVE_LOCK_KEY
,
ttl:
LOCK_TIMEOUT
,
retries:
1
)
do
loop_until
(
timeout:
LOOP_TIMEOUT
,
limit:
LOOP_LIMIT
)
do
destroy_batch
end
end
end
private
def
destroy_batch
artifacts
=
Ci
::
JobArtifact
.
expired
(
BATCH_SIZE
).
to_a
return
false
if
artifacts
.
empty?
artifacts
.
each
(
&
:destroy!
)
end
end
end
app/workers/expire_build_artifacts_worker.rb
View file @
b403ff3b
...
@@ -4,8 +4,20 @@ class ExpireBuildArtifactsWorker
...
@@ -4,8 +4,20 @@ class ExpireBuildArtifactsWorker
include
ApplicationWorker
include
ApplicationWorker
include
CronjobQueue
include
CronjobQueue
# rubocop: disable CodeReuse/ActiveRecord
def
perform
def
perform
if
Feature
.
enabled?
(
:ci_new_expire_job_artifacts_service
,
default_enabled:
true
)
perform_efficient_artifacts_removal
else
perform_legacy_artifacts_removal
end
end
def
perform_efficient_artifacts_removal
Ci
::
DestroyExpiredJobArtifactsService
.
new
.
execute
end
# rubocop: disable CodeReuse/ActiveRecord
def
perform_legacy_artifacts_removal
Rails
.
logger
.
info
'Scheduling removal of build artifacts'
Rails
.
logger
.
info
'Scheduling removal of build artifacts'
build_ids
=
Ci
::
Build
.
with_expired_artifacts
.
pluck
(
:id
)
build_ids
=
Ci
::
Build
.
with_expired_artifacts
.
pluck
(
:id
)
...
...
changelogs/unreleased/51754-admin-view-private-personal-snippets.yml
0 → 100644
View file @
b403ff3b
---
title
:
Allow users with full private access to read private personal snippets.
merge_request
:
24560
author
:
type
:
fixed
changelogs/unreleased/expire-job-artifacts-worker.yml
0 → 100644
View file @
b403ff3b
---
title
:
Efficiently remove expired artifacts in `ExpireBuildArtifactsWorker`
merge_request
:
24450
author
:
type
:
performance
lib/gitlab/loop_helpers.rb
0 → 100644
View file @
b403ff3b
# frozen_string_literal: true
module
Gitlab
module
LoopHelpers
##
# This helper method repeats the same task until it's expired.
#
# Note: ExpiredLoopError does not happen until the given block finished.
# Please do not use this method for heavy or asynchronous operations.
def
loop_until
(
timeout:
nil
,
limit:
1_000_000
)
raise
ArgumentError
unless
limit
start
=
Time
.
now
limit
.
times
do
return
true
unless
yield
return
false
if
timeout
&&
(
Time
.
now
-
start
)
>
timeout
end
false
end
end
end
spec/lib/gitlab/loop_helpers_spec.rb
0 → 100644
View file @
b403ff3b
require
'spec_helper'
describe
Gitlab
::
LoopHelpers
do
let
(
:class_instance
)
{
(
Class
.
new
{
include
::
Gitlab
::
LoopHelpers
}).
new
}
describe
'#loop_until'
do
subject
do
class_instance
.
loop_until
(
**
params
)
{
true
}
end
context
'when limit is not given'
do
let
(
:params
)
{
{
limit:
nil
}
}
it
'raises an error'
do
expect
{
subject
}.
to
raise_error
(
ArgumentError
)
end
end
context
'when timeout is specified'
do
let
(
:params
)
{
{
timeout:
1
.
second
}
}
it
"returns false after it's expired"
do
is_expected
.
to
be_falsy
end
it
'executes the block at least once'
do
expect
{
|
b
|
class_instance
.
loop_until
(
**
params
,
&
b
)
}
.
to
yield_control
.
at_least
(
1
)
end
end
context
'when iteration limit is specified'
do
let
(
:params
)
{
{
limit:
1
}
}
it
"returns false after it's expired"
do
is_expected
.
to
be_falsy
end
it
'executes the block once'
do
expect
{
|
b
|
class_instance
.
loop_until
(
**
params
,
&
b
)
}
.
to
yield_control
.
once
end
end
end
end
spec/models/event_spec.rb
View file @
b403ff3b
...
@@ -399,10 +399,7 @@ describe Event do
...
@@ -399,10 +399,7 @@ describe Event do
expect
(
event
.
visible_to_user?
(
nil
)).
to
be_falsy
expect
(
event
.
visible_to_user?
(
nil
)).
to
be_falsy
expect
(
event
.
visible_to_user?
(
non_member
)).
to
be_falsy
expect
(
event
.
visible_to_user?
(
non_member
)).
to
be_falsy
expect
(
event
.
visible_to_user?
(
author
)).
to
be_truthy
expect
(
event
.
visible_to_user?
(
author
)).
to
be_truthy
expect
(
event
.
visible_to_user?
(
admin
)).
to
be_truthy
# It is very unexpected that a private personal snippet is not visible
# to an instance administrator. This should be fixed in the future.
expect
(
event
.
visible_to_user?
(
admin
)).
to
be_falsy
end
end
end
end
end
end
...
...
spec/policies/personal_snippet_policy_spec.rb
View file @
b403ff3b
...
@@ -128,6 +128,17 @@ describe PersonalSnippetPolicy do
...
@@ -128,6 +128,17 @@ describe PersonalSnippetPolicy do
end
end
end
end
context
'admin user'
do
subject
{
permissions
(
admin_user
)
}
it
do
is_expected
.
to
be_allowed
(
:read_personal_snippet
)
is_expected
.
to
be_disallowed
(
:comment_personal_snippet
)
is_expected
.
to
be_disallowed
(
:award_emoji
)
is_expected
.
to
be_disallowed
(
*
author_permissions
)
end
end
context
'external user'
do
context
'external user'
do
subject
{
permissions
(
external_user
)
}
subject
{
permissions
(
external_user
)
}
...
...
spec/services/ci/destroy_expired_job_artifacts_service_spec.rb
0 → 100644
View file @
b403ff3b
require
'spec_helper'
describe
Ci
::
DestroyExpiredJobArtifactsService
,
:clean_gitlab_redis_shared_state
do
include
ExclusiveLeaseHelpers
describe
'.execute'
do
subject
{
service
.
execute
}
let
(
:service
)
{
described_class
.
new
}
let!
(
:artifact
)
{
create
(
:ci_job_artifact
,
expire_at:
1
.
day
.
ago
)
}
it
'destroys expired job artifacts'
do
expect
{
subject
}.
to
change
{
Ci
::
JobArtifact
.
count
}.
by
(
-
1
)
end
context
'when artifact is not expired'
do
let!
(
:artifact
)
{
create
(
:ci_job_artifact
,
expire_at:
1
.
day
.
since
)
}
it
'does not destroy expired job artifacts'
do
expect
{
subject
}.
not_to
change
{
Ci
::
JobArtifact
.
count
}
end
end
context
'when artifact is permanent'
do
let!
(
:artifact
)
{
create
(
:ci_job_artifact
,
expire_at:
nil
)
}
it
'does not destroy expired job artifacts'
do
expect
{
subject
}.
not_to
change
{
Ci
::
JobArtifact
.
count
}
end
end
context
'when failed to destroy artifact'
do
before
do
stub_const
(
'Ci::DestroyExpiredJobArtifactsService::LOOP_LIMIT'
,
10
)
allow_any_instance_of
(
Ci
::
JobArtifact
)
.
to
receive
(
:destroy!
)
.
and_raise
(
ActiveRecord
::
RecordNotDestroyed
)
end
it
'raises an exception and stop destroying'
do
expect
{
subject
}.
to
raise_error
(
ActiveRecord
::
RecordNotDestroyed
)
end
end
context
'when exclusive lease has already been taken by the other instance'
do
before
do
stub_exclusive_lease_taken
(
described_class
::
EXCLUSIVE_LOCK_KEY
,
timeout:
described_class
::
LOCK_TIMEOUT
)
end
it
'raises an error and does not start destroying'
do
expect
{
subject
}.
to
raise_error
(
Gitlab
::
ExclusiveLeaseHelpers
::
FailedToObtainLockError
)
end
end
context
'when timeout happens'
do
before
do
stub_const
(
'Ci::DestroyExpiredJobArtifactsService::LOOP_TIMEOUT'
,
1
.
second
)
allow_any_instance_of
(
described_class
).
to
receive
(
:destroy_batch
)
{
true
}
end
it
'returns false and does not continue destroying'
do
is_expected
.
to
be_falsy
end
end
context
'when loop reached loop limit'
do
before
do
stub_const
(
'Ci::DestroyExpiredJobArtifactsService::LOOP_LIMIT'
,
1
)
stub_const
(
'Ci::DestroyExpiredJobArtifactsService::BATCH_SIZE'
,
1
)
end
let!
(
:artifact
)
{
create_list
(
:ci_job_artifact
,
2
,
expire_at:
1
.
day
.
ago
)
}
it
'raises an error and does not continue destroying'
do
is_expected
.
to
be_falsy
end
it
'destroys one artifact'
do
expect
{
subject
}.
to
change
{
Ci
::
JobArtifact
.
count
}.
by
(
-
1
)
end
end
context
'when there are no artifacts'
do
let!
(
:artifact
)
{
}
it
'does not raise error'
do
expect
{
subject
}.
not_to
raise_error
end
end
context
'when there are artifacts more than batch sizes'
do
before
do
stub_const
(
'Ci::DestroyExpiredJobArtifactsService::BATCH_SIZE'
,
1
)
end
let!
(
:artifact
)
{
create_list
(
:ci_job_artifact
,
2
,
expire_at:
1
.
day
.
ago
)
}
it
'destroys all expired artifacts'
do
expect
{
subject
}.
to
change
{
Ci
::
JobArtifact
.
count
}.
by
(
-
2
)
end
end
end
end
spec/workers/expire_build_artifacts_worker_spec.rb
View file @
b403ff3b
...
@@ -11,6 +11,7 @@ describe ExpireBuildArtifactsWorker do
...
@@ -11,6 +11,7 @@ describe ExpireBuildArtifactsWorker do
describe
'#perform'
do
describe
'#perform'
do
before
do
before
do
stub_feature_flags
(
ci_new_expire_job_artifacts_service:
false
)
build
build
end
end
...
@@ -47,4 +48,17 @@ describe ExpireBuildArtifactsWorker do
...
@@ -47,4 +48,17 @@ describe ExpireBuildArtifactsWorker do
Sidekiq
::
Queues
.
jobs_by_worker
[
'ExpireBuildInstanceArtifactsWorker'
]
Sidekiq
::
Queues
.
jobs_by_worker
[
'ExpireBuildInstanceArtifactsWorker'
]
end
end
end
end
describe
'#perform with ci_new_expire_job_artifacts_service feature flag'
do
before
do
stub_feature_flags
(
ci_new_expire_job_artifacts_service:
true
)
end
it
'executes a service'
do
expect_any_instance_of
(
Ci
::
DestroyExpiredJobArtifactsService
).
to
receive
(
:execute
)
expect
(
ExpireBuildInstanceArtifactsWorker
).
not_to
receive
(
:bulk_perform_async
)
worker
.
perform
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