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
ac09f857
Commit
ac09f857
authored
Dec 16, 2015
by
Kamil Trzcinski
Committed by
James Edwards-Jones
Jan 31, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove locking and add force to FileUtils methods
parent
732a821d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
20 deletions
+12
-20
app/workers/pages_worker.rb
app/workers/pages_worker.rb
+12
-20
No files found.
app/workers/pages_worker.rb
View file @
ac09f857
...
@@ -5,7 +5,7 @@ class PagesWorker
...
@@ -5,7 +5,7 @@ class PagesWorker
BLOCK_SIZE
=
32
.
kilobytes
BLOCK_SIZE
=
32
.
kilobytes
MAX_SIZE
=
1
.
terabyte
MAX_SIZE
=
1
.
terabyte
sidekiq_options
queue: :pages
sidekiq_options
queue: :pages
,
retry:
false
def
perform
(
build_id
)
def
perform
(
build_id
)
@build_id
=
build_id
@build_id
=
build_id
...
@@ -44,25 +44,17 @@ class PagesWorker
...
@@ -44,25 +44,17 @@ class PagesWorker
FileUtils
.
mkdir_p
(
pages_path
)
FileUtils
.
mkdir_p
(
pages_path
)
# Lock file for time of deployment to prevent the two processes from doing the concurrent deployment
# Ignore deployment if the HEAD changed when we were extracting the archive
File
.
open
(
lock_path
,
File
::
RDWR
|
File
::
CREAT
,
0644
)
do
|
f
|
return
unless
valid?
f
.
flock
(
File
::
LOCK_EX
)
return
unless
valid?
# Do atomic move of pages
# Move and removal may not be atomic, but they are significantly faster then extracting and removal
# Do atomic move of pages
# 1. We move deployed public to previous public path (file removal is slow)
# Move and removal may not be atomic, but they are significantly faster then extracting and removal
# 2. We move temporary public to be deployed public
# 1. We move deployed public to previous public path (file removal is slow)
# 3. We remove previous public path
# 2. We move temporary public to be deployed public
FileUtils
.
move
(
public_path
,
previous_public_path
,
force:
true
)
# 3. We remove previous public path
FileUtils
.
move
(
temp_public_path
,
public_path
)
if
File
.
exists?
(
public_path
)
FileUtils
.
rm_r
(
previous_public_path
,
force:
true
)
FileUtils
.
move
(
public_path
,
previous_public_path
)
end
FileUtils
.
move
(
temp_public_path
,
public_path
)
end
if
File
.
exists?
(
previous_public_path
)
FileUtils
.
rm_r
(
previous_public_path
,
force:
true
)
end
@status
.
success
@status
.
success
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