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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
31a1ce21
Commit
31a1ce21
authored
Nov 23, 2018
by
Kamil Trzciński
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Lock writes to trace stream
parent
2e3dab38
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
99 additions
and
58 deletions
+99
-58
app/models/ci/build_trace_chunk.rb
app/models/ci/build_trace_chunk.rb
+2
-2
changelogs/unreleased/lock-trace-writes.yml
changelogs/unreleased/lock-trace-writes.yml
+5
-0
lib/api/api.rb
lib/api/api.rb
+4
-0
lib/gitlab/ci/trace.rb
lib/gitlab/ci/trace.rb
+33
-30
lib/gitlab/ci/trace/stream.rb
lib/gitlab/ci/trace/stream.rb
+3
-8
lib/gitlab/exclusive_lease_helpers.rb
lib/gitlab/exclusive_lease_helpers.rb
+2
-0
spec/lib/gitlab/ci/trace/stream_spec.rb
spec/lib/gitlab/ci/trace/stream_spec.rb
+15
-10
spec/lib/gitlab/exclusive_lease_helpers_spec.rb
spec/lib/gitlab/exclusive_lease_helpers_spec.rb
+8
-0
spec/requests/api/runner_spec.rb
spec/requests/api/runner_spec.rb
+24
-0
spec/support/shared_examples/ci_trace_shared_examples.rb
spec/support/shared_examples/ci_trace_shared_examples.rb
+2
-7
spec/workers/stuck_ci_jobs_worker_spec.rb
spec/workers/stuck_ci_jobs_worker_spec.rb
+1
-1
No files found.
app/models/ci/build_trace_chunk.rb
View file @
31a1ce21
...
...
@@ -76,7 +76,7 @@ module Ci
raise
ArgumentError
,
'Offset is out of range'
if
offset
>
size
||
offset
<
0
raise
ArgumentError
,
'Chunk size overflow'
if
CHUNK_SIZE
<
(
offset
+
new_data
.
bytesize
)
in_lock
(
*
lock_params
)
do
# Write ope
t
ation is atomic
in_lock
(
*
lock_params
)
do
# Write ope
r
ation is atomic
unsafe_set_data!
(
data
.
byteslice
(
0
,
offset
)
+
new_data
)
end
...
...
@@ -100,7 +100,7 @@ module Ci
end
def
persist_data!
in_lock
(
*
lock_params
)
do
# Write ope
t
ation is atomic
in_lock
(
*
lock_params
)
do
# Write ope
r
ation is atomic
unsafe_persist_to!
(
self
.
class
.
persistable_store
)
end
end
...
...
changelogs/unreleased/lock-trace-writes.yml
0 → 100644
View file @
31a1ce21
---
title
:
Lock writes to trace stream
merge_request
:
author
:
type
:
fixed
lib/api/api.rb
View file @
31a1ce21
...
...
@@ -50,6 +50,10 @@ module API
rack_response
({
'message'
=>
'404 Not found'
}.
to_json
,
404
)
end
rescue_from
::
Gitlab
::
ExclusiveLeaseHelpers
::
FailedToObtainLockError
do
rack_response
({
'message'
=>
'409 Conflict: Resource lock'
}.
to_json
,
409
)
end
rescue_from
UploadedFile
::
InvalidPathError
do
|
e
|
rack_response
({
'message'
=>
e
.
message
}.
to_json
,
400
)
end
...
...
lib/gitlab/ci/trace.rb
View file @
31a1ce21
...
...
@@ -3,9 +3,11 @@
module
Gitlab
module
Ci
class
Trace
include
ExclusiveLeaseGuard
include
::
Gitlab
::
ExclusiveLeaseHelpers
LEASE_TIMEOUT
=
1
.
hour
LOCK_TTL
=
1
.
minute
LOCK_RETRIES
=
2
LOCK_SLEEP
=
0.001
.
seconds
ArchiveError
=
Class
.
new
(
StandardError
)
AlreadyArchivedError
=
Class
.
new
(
StandardError
)
...
...
@@ -82,26 +84,12 @@ module Gitlab
stream
&
.
close
end
def
write
(
mode
)
stream
=
Gitlab
::
Ci
::
Trace
::
Stream
.
new
do
if
trace_artifact
raise
AlreadyArchivedError
,
'Could not write to the archived trace'
elsif
current_path
File
.
open
(
current_path
,
mode
)
elsif
Feature
.
enabled?
(
'ci_enable_live_trace'
)
Gitlab
::
Ci
::
Trace
::
ChunkedIO
.
new
(
job
)
else
File
.
open
(
ensure_path
,
mode
)
def
write
(
mode
,
&
blk
)
in_write_lock
do
unsafe_write!
(
mode
,
&
blk
)
end
end
yield
(
stream
).
tap
do
job
.
touch
if
job
.
needs_touch?
end
ensure
stream
&
.
close
end
def
erase!
##
# Erase the archived trace
...
...
@@ -117,13 +105,33 @@ module Gitlab
end
def
archive!
try_obtain_lease
do
in_write_lock
do
unsafe_archive!
end
end
private
def
unsafe_write!
(
mode
,
&
blk
)
stream
=
Gitlab
::
Ci
::
Trace
::
Stream
.
new
do
if
trace_artifact
raise
AlreadyArchivedError
,
'Could not write to the archived trace'
elsif
current_path
File
.
open
(
current_path
,
mode
)
elsif
Feature
.
enabled?
(
'ci_enable_live_trace'
)
Gitlab
::
Ci
::
Trace
::
ChunkedIO
.
new
(
job
)
else
File
.
open
(
ensure_path
,
mode
)
end
end
yield
(
stream
).
tap
do
job
.
touch
if
job
.
needs_touch?
end
ensure
stream
&
.
close
end
def
unsafe_archive!
raise
AlreadyArchivedError
,
'Could not archive again'
if
trace_artifact
raise
ArchiveError
,
'Job is not finished yet'
unless
job
.
complete?
...
...
@@ -146,6 +154,11 @@ module Gitlab
end
end
def
in_write_lock
(
&
blk
)
lock_key
=
"trace:write:lock:
#{
job
.
id
}
"
in_lock
(
lock_key
,
ttl:
LOCK_TTL
,
retries:
LOCK_RETRIES
,
sleep_sec:
LOCK_SLEEP
,
&
blk
)
end
def
archive_stream!
(
stream
)
clone_file!
(
stream
,
JobArtifactUploader
.
workhorse_upload_path
)
do
|
clone_path
|
create_build_trace!
(
job
,
clone_path
)
...
...
@@ -226,16 +239,6 @@ module Gitlab
def
trace_artifact
job
.
job_artifacts_trace
end
# For ExclusiveLeaseGuard concern
def
lease_key
@lease_key
||=
"trace:archive:
#{
job
.
id
}
"
end
# For ExclusiveLeaseGuard concern
def
lease_timeout
LEASE_TIMEOUT
end
end
end
end
lib/gitlab/ci/trace/stream.rb
View file @
31a1ce21
...
...
@@ -43,19 +43,14 @@ module Gitlab
def
append
(
data
,
offset
)
data
=
data
.
force_encoding
(
Encoding
::
BINARY
)
stream
.
truncate
(
offset
)
stream
.
seek
(
0
,
IO
::
SEEK_END
)
stream
.
seek
(
offset
,
IO
::
SEEK_SET
)
stream
.
write
(
data
)
stream
.
truncate
(
offset
+
data
.
bytesize
)
stream
.
flush
()
end
def
set
(
data
)
data
=
data
.
force_encoding
(
Encoding
::
BINARY
)
stream
.
seek
(
0
,
IO
::
SEEK_SET
)
stream
.
write
(
data
)
stream
.
truncate
(
data
.
bytesize
)
stream
.
flush
()
append
(
data
,
0
)
end
def
raw
(
last_lines:
nil
)
...
...
lib/gitlab/exclusive_lease_helpers.rb
View file @
31a1ce21
...
...
@@ -12,6 +12,8 @@ module Gitlab
# because it holds the connection until all `retries` is consumed.
# This could potentially eat up all connection pools.
def
in_lock
(
key
,
ttl:
1
.
minute
,
retries:
10
,
sleep_sec:
0.01
.
seconds
)
raise
ArgumentError
,
'Key needs to be specified'
unless
key
lease
=
Gitlab
::
ExclusiveLease
.
new
(
key
,
timeout:
ttl
)
until
uuid
=
lease
.
try_obtain
...
...
spec/lib/gitlab/ci/trace/stream_spec.rb
View file @
31a1ce21
...
...
@@ -257,7 +257,8 @@ describe Gitlab::Ci::Trace::Stream, :clean_gitlab_redis_cache do
let!
(
:last_result
)
{
stream
.
html_with_state
}
before
do
stream
.
append
(
"5678"
,
4
)
data_stream
.
seek
(
4
,
IO
::
SEEK_SET
)
data_stream
.
write
(
"5678"
)
stream
.
seek
(
0
)
end
...
...
@@ -271,23 +272,27 @@ describe Gitlab::Ci::Trace::Stream, :clean_gitlab_redis_cache do
end
context
'when stream is StringIO'
do
let
(
:stream
)
do
described_class
.
new
do
let
(
:data_stream
)
do
StringIO
.
new
(
"1234"
)
end
let
(
:stream
)
do
described_class
.
new
{
data_stream
}
end
it_behaves_like
'html_with_states'
end
context
'when stream is ChunkedIO'
do
let
(
:stream
)
do
described_class
.
new
do
let
(
:data_stream
)
do
Gitlab
::
Ci
::
Trace
::
ChunkedIO
.
new
(
build
).
tap
do
|
chunked_io
|
chunked_io
.
write
(
"1234"
)
chunked_io
.
seek
(
0
,
IO
::
SEEK_SET
)
end
end
let
(
:stream
)
do
described_class
.
new
{
data_stream
}
end
it_behaves_like
'html_with_states'
...
...
spec/lib/gitlab/exclusive_lease_helpers_spec.rb
View file @
31a1ce21
...
...
@@ -11,6 +11,14 @@ describe Gitlab::ExclusiveLeaseHelpers, :clean_gitlab_redis_shared_state do
let
(
:options
)
{
{}
}
context
'when unique key is not set'
do
let
(
:unique_key
)
{
}
it
'raises an error'
do
expect
{
subject
}.
to
raise_error
ArgumentError
end
end
context
'when the lease is not obtained yet'
do
before
do
stub_exclusive_lease
(
unique_key
,
'uuid'
)
...
...
spec/requests/api/runner_spec.rb
View file @
31a1ce21
...
...
@@ -830,6 +830,18 @@ describe API::Runner, :clean_gitlab_redis_shared_state do
expect
(
job
.
trace
.
raw
).
to
eq
'BUILD TRACE UPDATED'
expect
(
job
.
job_artifacts_trace
.
open
.
read
).
to
eq
'BUILD TRACE UPDATED'
end
context
'when concurrent update of trace is happening'
do
before
do
job
.
trace
.
write
(
'wb'
)
do
update_job
(
state:
'success'
,
trace:
'BUILD TRACE UPDATED'
)
end
end
it
'returns that operation conflicts'
do
expect
(
response
.
status
).
to
eq
(
409
)
end
end
end
context
'when no trace is given'
do
...
...
@@ -1022,6 +1034,18 @@ describe API::Runner, :clean_gitlab_redis_shared_state do
end
end
context
'when concurrent update of trace is happening'
do
before
do
job
.
trace
.
write
(
'wb'
)
do
patch_the_trace
end
end
it
'returns that operation conflicts'
do
expect
(
response
.
status
).
to
eq
(
409
)
end
end
context
'when the job is canceled'
do
before
do
job
.
cancel
...
...
spec/support/shared_examples/ci_trace_shared_examples.rb
View file @
31a1ce21
...
...
@@ -272,16 +272,11 @@ shared_examples_for 'common trace features' do
include
ExclusiveLeaseHelpers
before
do
stub_exclusive_lease_taken
(
"trace:
archive:
#{
trace
.
job
.
id
}
"
,
timeout:
1
.
hour
)
stub_exclusive_lease_taken
(
"trace:
write:lock:
#{
trace
.
job
.
id
}
"
,
timeout:
1
.
minute
)
end
it
'blocks concurrent archiving'
do
expect
(
Rails
.
logger
).
to
receive
(
:error
).
with
(
'Cannot obtain an exclusive lease. There must be another instance already in execution.'
)
subject
build
.
reload
expect
(
build
.
job_artifacts_trace
).
to
be_nil
expect
{
subject
}.
to
raise_error
(
::
Gitlab
::
ExclusiveLeaseHelpers
::
FailedToObtainLockError
)
end
end
end
...
...
spec/workers/stuck_ci_jobs_worker_spec.rb
View file @
31a1ce21
...
...
@@ -5,7 +5,7 @@ describe StuckCiJobsWorker do
let!
(
:runner
)
{
create
:ci_runner
}
let!
(
:job
)
{
create
:ci_build
,
runner:
runner
}
let
(
:trace_lease_key
)
{
"trace:
archive
:
#{
job
.
id
}
"
}
let
(
:trace_lease_key
)
{
"trace:
write:lock
:
#{
job
.
id
}
"
}
let
(
:trace_lease_uuid
)
{
SecureRandom
.
uuid
}
let
(
:worker_lease_key
)
{
StuckCiJobsWorker
::
EXCLUSIVE_LEASE_KEY
}
let
(
:worker_lease_uuid
)
{
SecureRandom
.
uuid
}
...
...
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