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
1369f1d4
Commit
1369f1d4
authored
Jan 09, 2018
by
Jacob Vosmaer (GitLab)
Committed by
Nick Thomas
Jan 09, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add option to disable archive caching
parent
1faea24a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
66 additions
and
31 deletions
+66
-31
gitaly_test.go
gitaly_test.go
+27
-8
internal/git/archive.go
internal/git/archive.go
+39
-23
No files found.
gitaly_test.go
View file @
1369f1d4
...
@@ -3,6 +3,7 @@ package main
...
@@ -3,6 +3,7 @@ package main
import
(
import
(
"bytes"
"bytes"
"fmt"
"fmt"
"io/ioutil"
"math/rand"
"math/rand"
"net"
"net"
"net/http"
"net/http"
...
@@ -448,19 +449,37 @@ func TestGetArchiveProxiedToGitalySuccessfully(t *testing.T) {
...
@@ -448,19 +449,37 @@ func TestGetArchiveProxiedToGitalySuccessfully(t *testing.T) {
repoStorage
:=
"default"
repoStorage
:=
"default"
oid
:=
"54fcc214b94e78d7a41a9a8fe6d87a5e59500e51"
oid
:=
"54fcc214b94e78d7a41a9a8fe6d87a5e59500e51"
repoRelativePath
:=
"foo/bar.git"
repoRelativePath
:=
"foo/bar.git"
archivePath
:=
"my/path"
archivePrefix
:=
"repo-1"
archivePrefix
:=
"repo-1"
jsonParams
:=
fmt
.
Sprintf
(
`{"GitalyServer":{"Address":"%s","Token":""},"GitalyRepository":{"storage_name":"%s","relative_path":"%s"},"ArchivePath":"%s","ArchivePrefix":"%s","CommitId":"%s"}`
,
gitalyAddress
,
repoStorage
,
repoRelativePath
,
archivePath
,
archivePrefix
,
oid
)
expectedBody
:=
testhelper
.
GitalyGetArchiveResponseMock
expectedBody
:=
testhelper
.
GitalyGetArchiveResponseMock
archiveLength
:=
len
(
expectedBody
)
archiveLength
:=
len
(
expectedBody
)
resp
,
body
,
err
:=
doSendDataRequest
(
"/archive.tar.gz"
,
"git-archive"
,
jsonParams
)
testCases
:=
[]
struct
{
require
.
NoError
(
t
,
err
)
archivePath
string
cacheDisabled
bool
}{
{
archivePath
:
path
.
Join
(
scratchDir
,
"my/path"
),
cacheDisabled
:
false
},
{
archivePath
:
"/var/empty/my/path"
,
cacheDisabled
:
true
},
}
assert
.
Equal
(
t
,
200
,
resp
.
StatusCode
,
"GET %q: status code"
,
resp
.
Request
.
URL
)
for
_
,
tc
:=
range
testCases
{
assert
.
Equal
(
t
,
expectedBody
,
string
(
body
),
"GET %q: response body"
,
resp
.
Request
.
URL
)
jsonParams
:=
fmt
.
Sprintf
(
`{"GitalyServer":{"Address":"%s","Token":""},"GitalyRepository":{"storage_name":"%s","relative_path":"%s"},"ArchivePath":"%s","ArchivePrefix":"%s","CommitId":"%s","DisableCache":%v}`
,
assert
.
Equal
(
t
,
archiveLength
,
len
(
body
),
"GET %q: body size"
,
resp
.
Request
.
URL
)
gitalyAddress
,
repoStorage
,
repoRelativePath
,
tc
.
archivePath
,
archivePrefix
,
oid
,
tc
.
cacheDisabled
)
resp
,
body
,
err
:=
doSendDataRequest
(
"/archive.tar.gz"
,
"git-archive"
,
jsonParams
)
require
.
NoError
(
t
,
err
)
assert
.
Equal
(
t
,
200
,
resp
.
StatusCode
,
"GET %q: status code"
,
resp
.
Request
.
URL
)
assert
.
Equal
(
t
,
expectedBody
,
string
(
body
),
"GET %q: response body"
,
resp
.
Request
.
URL
)
assert
.
Equal
(
t
,
archiveLength
,
len
(
body
),
"GET %q: body size"
,
resp
.
Request
.
URL
)
if
tc
.
cacheDisabled
{
_
,
err
:=
os
.
Stat
(
tc
.
archivePath
)
require
.
True
(
t
,
os
.
IsNotExist
(
err
),
"expected 'does not exist', got: %v"
,
err
)
}
else
{
cachedArchive
,
err
:=
ioutil
.
ReadFile
(
tc
.
archivePath
)
require
.
NoError
(
t
,
err
)
require
.
Equal
(
t
,
expectedBody
,
string
(
cachedArchive
))
}
}
}
}
func
TestGetArchiveProxiedToGitalyInterruptedStream
(
t
*
testing
.
T
)
{
func
TestGetArchiveProxiedToGitalyInterruptedStream
(
t
*
testing
.
T
)
{
...
...
internal/git/archive.go
View file @
1369f1d4
...
@@ -30,6 +30,7 @@ type archiveParams struct {
...
@@ -30,6 +30,7 @@ type archiveParams struct {
CommitId
string
CommitId
string
GitalyServer
gitaly
.
Server
GitalyServer
gitaly
.
Server
GitalyRepository
pb
.
Repository
GitalyRepository
pb
.
Repository
DisableCache
bool
}
}
var
(
var
(
...
@@ -61,32 +62,41 @@ func (a *archive) Inject(w http.ResponseWriter, r *http.Request, sendData string
...
@@ -61,32 +62,41 @@ func (a *archive) Inject(w http.ResponseWriter, r *http.Request, sendData string
return
return
}
}
cacheEnabled
:=
!
params
.
DisableCache
archiveFilename
:=
path
.
Base
(
params
.
ArchivePath
)
archiveFilename
:=
path
.
Base
(
params
.
ArchivePath
)
if
cachedArchive
,
err
:=
os
.
Open
(
params
.
ArchivePath
);
err
==
nil
{
if
cacheEnabled
{
defer
cachedArchive
.
Close
()
cachedArchive
,
err
:=
os
.
Open
(
params
.
ArchivePath
)
gitArchiveCache
.
WithLabelValues
(
"hit"
)
.
Inc
()
if
err
==
nil
{
setArchiveHeaders
(
w
,
format
,
archiveFilename
)
defer
cachedArchive
.
Close
()
// Even if somebody deleted the cachedArchive from disk since we opened
gitArchiveCache
.
WithLabelValues
(
"hit"
)
.
Inc
()
// the file, Unix file semantics guarantee we can still read from the
setArchiveHeaders
(
w
,
format
,
archiveFilename
)
// open file in this process.
// Even if somebody deleted the cachedArchive from disk since we opened
http
.
ServeContent
(
w
,
r
,
""
,
time
.
Unix
(
0
,
0
),
cachedArchive
)
// the file, Unix file semantics guarantee we can still read from the
return
// open file in this process.
http
.
ServeContent
(
w
,
r
,
""
,
time
.
Unix
(
0
,
0
),
cachedArchive
)
return
}
}
}
gitArchiveCache
.
WithLabelValues
(
"miss"
)
.
Inc
()
gitArchiveCache
.
WithLabelValues
(
"miss"
)
.
Inc
()
// We assume the tempFile has a unique name so that concurrent requests are
var
tempFile
*
os
.
File
// safe. We create the tempfile in the same directory as the final cached
var
err
error
// archive we want to create so that we can use an atomic link(2) operation
// to finalize the cached archive.
if
cacheEnabled
{
tempFile
,
err
:=
prepareArchiveTempfile
(
path
.
Dir
(
params
.
ArchivePath
),
archiveFilename
)
// We assume the tempFile has a unique name so that concurrent requests are
if
err
!=
nil
{
// safe. We create the tempfile in the same directory as the final cached
helper
.
Fail500
(
w
,
r
,
fmt
.
Errorf
(
"SendArchive: create tempfile: %v"
,
err
))
// archive we want to create so that we can use an atomic link(2) operation
return
// to finalize the cached archive.
tempFile
,
err
=
prepareArchiveTempfile
(
path
.
Dir
(
params
.
ArchivePath
),
archiveFilename
)
if
err
!=
nil
{
helper
.
Fail500
(
w
,
r
,
fmt
.
Errorf
(
"SendArchive: create tempfile: %v"
,
err
))
return
}
defer
tempFile
.
Close
()
defer
os
.
Remove
(
tempFile
.
Name
())
}
}
defer
tempFile
.
Close
()
defer
os
.
Remove
(
tempFile
.
Name
())
var
archiveReader
io
.
Reader
var
archiveReader
io
.
Reader
if
params
.
GitalyServer
.
Address
!=
""
{
if
params
.
GitalyServer
.
Address
!=
""
{
...
@@ -103,7 +113,10 @@ func (a *archive) Inject(w http.ResponseWriter, r *http.Request, sendData string
...
@@ -103,7 +113,10 @@ func (a *archive) Inject(w http.ResponseWriter, r *http.Request, sendData string
return
return
}
}
reader
:=
io
.
TeeReader
(
archiveReader
,
tempFile
)
reader
:=
archiveReader
if
cacheEnabled
{
reader
=
io
.
TeeReader
(
archiveReader
,
tempFile
)
}
// Start writing the response
// Start writing the response
setArchiveHeaders
(
w
,
format
,
archiveFilename
)
setArchiveHeaders
(
w
,
format
,
archiveFilename
)
...
@@ -113,9 +126,12 @@ func (a *archive) Inject(w http.ResponseWriter, r *http.Request, sendData string
...
@@ -113,9 +126,12 @@ func (a *archive) Inject(w http.ResponseWriter, r *http.Request, sendData string
return
return
}
}
if
err
:=
finalizeCachedArchive
(
tempFile
,
params
.
ArchivePath
);
err
!=
nil
{
if
cacheEnabled
{
helper
.
LogError
(
r
,
fmt
.
Errorf
(
"SendArchive: finalize cached archive: %v"
,
err
))
err
:=
finalizeCachedArchive
(
tempFile
,
params
.
ArchivePath
)
return
if
err
!=
nil
{
helper
.
LogError
(
r
,
fmt
.
Errorf
(
"SendArchive: finalize cached archive: %v"
,
err
))
return
}
}
}
}
}
...
...
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