S3BinaryCacheStore: Support compression of narinfo and log files
You can now set the store parameter "text-compression=br" to compress textual files in the binary cache (i.e. narinfo and logs) using Brotli. This sets the Content-Encoding header; the extension of compressed files is unchanged. You can separately specify the compression of log files using "log-compression=br". This is useful when you don't want to compress narinfo files for backward compatibility.
This commit is contained in:
parent
2691498b5c
commit
8b1d65bebe
|
@ -250,6 +250,7 @@ void BinaryCacheStore::addToStore(const ValidPathInfo & info, const ref<std::str
|
||||||
narInfo->url = "nar/" + printHash32(narInfo->fileHash) + ".nar"
|
narInfo->url = "nar/" + printHash32(narInfo->fileHash) + ".nar"
|
||||||
+ (compression == "xz" ? ".xz" :
|
+ (compression == "xz" ? ".xz" :
|
||||||
compression == "bzip2" ? ".bz2" :
|
compression == "bzip2" ? ".bz2" :
|
||||||
|
compression == "br" ? ".br" :
|
||||||
"");
|
"");
|
||||||
if (repair || !fileExists(narInfo->url)) {
|
if (repair || !fileExists(narInfo->url)) {
|
||||||
stats.narWrite++;
|
stats.narWrite++;
|
||||||
|
|
|
@ -39,6 +39,16 @@ std::string resolveUri(const std::string & uri)
|
||||||
return uri;
|
return uri;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ref<std::string> decodeContent(const std::string & encoding, ref<std::string> data)
|
||||||
|
{
|
||||||
|
if (encoding == "")
|
||||||
|
return data;
|
||||||
|
else if (encoding == "br")
|
||||||
|
return decompress(encoding, *data);
|
||||||
|
else
|
||||||
|
throw Error("unsupported Content-Encoding ‘%s’", encoding);
|
||||||
|
}
|
||||||
|
|
||||||
struct CurlDownloader : public Downloader
|
struct CurlDownloader : public Downloader
|
||||||
{
|
{
|
||||||
CURLM * curlm = 0;
|
CURLM * curlm = 0;
|
||||||
|
@ -275,12 +285,8 @@ struct CurlDownloader : public Downloader
|
||||||
result.cached = httpStatus == 304;
|
result.cached = httpStatus == 304;
|
||||||
done = true;
|
done = true;
|
||||||
|
|
||||||
/* Ad hoc support for brotli, since curl doesn't do
|
|
||||||
this yet. */
|
|
||||||
try {
|
try {
|
||||||
if (encoding == "br")
|
result.data = decodeContent(encoding, ref<std::string>(result.data));
|
||||||
result.data = decompress("br", *result.data);
|
|
||||||
|
|
||||||
callSuccess(success, failure, const_cast<const DownloadResult &>(result));
|
callSuccess(success, failure, const_cast<const DownloadResult &>(result));
|
||||||
} catch (...) {
|
} catch (...) {
|
||||||
done = true;
|
done = true;
|
||||||
|
|
|
@ -73,4 +73,7 @@ public:
|
||||||
|
|
||||||
bool isUri(const string & s);
|
bool isUri(const string & s);
|
||||||
|
|
||||||
|
/* Decode data according to the Content-Encoding header. */
|
||||||
|
ref<std::string> decodeContent(const std::string & encoding, ref<std::string> data);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,6 +5,8 @@
|
||||||
#include "nar-info.hh"
|
#include "nar-info.hh"
|
||||||
#include "nar-info-disk-cache.hh"
|
#include "nar-info-disk-cache.hh"
|
||||||
#include "globals.hh"
|
#include "globals.hh"
|
||||||
|
#include "compression.hh"
|
||||||
|
#include "download.hh"
|
||||||
|
|
||||||
#include <aws/core/Aws.h>
|
#include <aws/core/Aws.h>
|
||||||
#include <aws/core/client/ClientConfiguration.h>
|
#include <aws/core/client/ClientConfiguration.h>
|
||||||
|
@ -104,8 +106,10 @@ S3Helper::DownloadResult S3Helper::getObject(
|
||||||
auto result = checkAws(fmt("AWS error fetching ‘%s’", key),
|
auto result = checkAws(fmt("AWS error fetching ‘%s’", key),
|
||||||
client->GetObject(request));
|
client->GetObject(request));
|
||||||
|
|
||||||
res.data = std::make_shared<std::string>(
|
res.data = decodeContent(
|
||||||
dynamic_cast<std::stringstream &>(result.GetBody()).str());
|
result.GetContentEncoding(),
|
||||||
|
make_ref<std::string>(
|
||||||
|
dynamic_cast<std::stringstream &>(result.GetBody()).str()));
|
||||||
|
|
||||||
} catch (S3Error & e) {
|
} catch (S3Error & e) {
|
||||||
if (e.err != Aws::S3::S3Errors::NO_SUCH_KEY) throw;
|
if (e.err != Aws::S3::S3Errors::NO_SUCH_KEY) throw;
|
||||||
|
@ -137,11 +141,15 @@ struct S3BinaryCacheStoreImpl : public S3BinaryCacheStore
|
||||||
|
|
||||||
S3Helper s3Helper;
|
S3Helper s3Helper;
|
||||||
|
|
||||||
|
std::string textCompression, logCompression;
|
||||||
|
|
||||||
S3BinaryCacheStoreImpl(
|
S3BinaryCacheStoreImpl(
|
||||||
const Params & params, const std::string & bucketName)
|
const Params & params, const std::string & bucketName)
|
||||||
: S3BinaryCacheStore(params)
|
: S3BinaryCacheStore(params)
|
||||||
, bucketName(bucketName)
|
, bucketName(bucketName)
|
||||||
, s3Helper(get(params, "aws-region", Aws::Region::US_EAST_1))
|
, s3Helper(get(params, "aws-region", Aws::Region::US_EAST_1))
|
||||||
|
, textCompression(get(params, "text-compression", "gzip"))
|
||||||
|
, logCompression(get(params, "log-compression", textCompression))
|
||||||
{
|
{
|
||||||
diskCache = getNarInfoDiskCache();
|
diskCache = getNarInfoDiskCache();
|
||||||
}
|
}
|
||||||
|
@ -220,13 +228,17 @@ struct S3BinaryCacheStoreImpl : public S3BinaryCacheStore
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void upsertFile(const std::string & path, const std::string & data) override
|
void uploadFile(const std::string & path, const std::string & data,
|
||||||
|
const std::string & contentEncoding)
|
||||||
{
|
{
|
||||||
auto request =
|
auto request =
|
||||||
Aws::S3::Model::PutObjectRequest()
|
Aws::S3::Model::PutObjectRequest()
|
||||||
.WithBucket(bucketName)
|
.WithBucket(bucketName)
|
||||||
.WithKey(path);
|
.WithKey(path);
|
||||||
|
|
||||||
|
if (contentEncoding != "")
|
||||||
|
request.SetContentEncoding(contentEncoding);
|
||||||
|
|
||||||
auto stream = std::make_shared<istringstream_nocopy>(data);
|
auto stream = std::make_shared<istringstream_nocopy>(data);
|
||||||
|
|
||||||
request.SetBody(stream);
|
request.SetBody(stream);
|
||||||
|
@ -249,6 +261,16 @@ struct S3BinaryCacheStoreImpl : public S3BinaryCacheStore
|
||||||
stats.putTimeMs += duration;
|
stats.putTimeMs += duration;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void upsertFile(const std::string & path, const std::string & data) override
|
||||||
|
{
|
||||||
|
if (path.find(".narinfo") != std::string::npos)
|
||||||
|
uploadFile(path, *compress(textCompression, data), textCompression);
|
||||||
|
else if (path.find("/log") != std::string::npos)
|
||||||
|
uploadFile(path, *compress(logCompression, data), logCompression);
|
||||||
|
else
|
||||||
|
uploadFile(path, data, "");
|
||||||
|
}
|
||||||
|
|
||||||
void getFile(const std::string & path,
|
void getFile(const std::string & path,
|
||||||
std::function<void(std::shared_ptr<std::string>)> success,
|
std::function<void(std::shared_ptr<std::string>)> success,
|
||||||
std::function<void(std::exception_ptr exc)> failure) override
|
std::function<void(std::exception_ptr exc)> failure) override
|
||||||
|
|
|
@ -91,6 +91,7 @@ static ref<std::string> decompressBzip2(const std::string & in)
|
||||||
|
|
||||||
static ref<std::string> decompressBrotli(const std::string & in)
|
static ref<std::string> decompressBrotli(const std::string & in)
|
||||||
{
|
{
|
||||||
|
// FIXME: use libbrotli
|
||||||
return make_ref<std::string>(runProgram(BRO, true, {"-d"}, in));
|
return make_ref<std::string>(runProgram(BRO, true, {"-d"}, in));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -266,6 +267,34 @@ struct BzipSink : CompressionSink
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct BrotliSink : CompressionSink
|
||||||
|
{
|
||||||
|
Sink & nextSink;
|
||||||
|
std::string data;
|
||||||
|
|
||||||
|
BrotliSink(Sink & nextSink) : nextSink(nextSink)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
~BrotliSink()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
// FIXME: use libbrotli
|
||||||
|
|
||||||
|
void finish() override
|
||||||
|
{
|
||||||
|
flush();
|
||||||
|
nextSink(runProgram(BRO, true, {}, data));
|
||||||
|
}
|
||||||
|
|
||||||
|
void write(const unsigned char * data, size_t len) override
|
||||||
|
{
|
||||||
|
checkInterrupt();
|
||||||
|
this->data.append((const char *) data, len);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
ref<CompressionSink> makeCompressionSink(const std::string & method, Sink & nextSink)
|
ref<CompressionSink> makeCompressionSink(const std::string & method, Sink & nextSink)
|
||||||
{
|
{
|
||||||
if (method == "none")
|
if (method == "none")
|
||||||
|
@ -274,6 +303,8 @@ ref<CompressionSink> makeCompressionSink(const std::string & method, Sink & next
|
||||||
return make_ref<XzSink>(nextSink);
|
return make_ref<XzSink>(nextSink);
|
||||||
else if (method == "bzip2")
|
else if (method == "bzip2")
|
||||||
return make_ref<BzipSink>(nextSink);
|
return make_ref<BzipSink>(nextSink);
|
||||||
|
else if (method == "br")
|
||||||
|
return make_ref<BrotliSink>(nextSink);
|
||||||
else
|
else
|
||||||
throw UnknownCompressionMethod(format("unknown compression method ‘%s’") % method);
|
throw UnknownCompressionMethod(format("unknown compression method ‘%s’") % method);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue