nix-gh/src/libstore/remote-store.hh

111 lines
2.8 KiB
C++
Raw Normal View History

#pragma once
2006-11-30 19:35:50 +01:00
2016-02-23 16:40:16 +01:00
#include <limits>
2006-11-30 19:35:50 +01:00
#include <string>
#include "store-api.hh"
namespace nix {
class Pipe;
class Pid;
struct FdSink;
struct FdSource;
template<typename T> class Pool;
/* FIXME: RemoteStore is a misnomer - should be something like
DaemonStore. */
class RemoteStore : public LocalFSStore
2006-11-30 19:35:50 +01:00
{
public:
2016-02-23 16:40:16 +01:00
RemoteStore(size_t maxConnections = std::numeric_limits<size_t>::max());
2006-11-30 19:35:50 +01:00
/* Implementations of abstract store API methods. */
bool isValidPathUncached(const Path & path) override;
2006-11-30 19:35:50 +01:00
2015-09-18 01:22:06 +02:00
PathSet queryValidPaths(const PathSet & paths) override;
2015-09-18 01:22:06 +02:00
PathSet queryAllValidPaths() override;
std::shared_ptr<ValidPathInfo> queryPathInfoUncached(const Path & path) override;
2006-11-30 19:35:50 +01:00
2015-09-18 01:22:06 +02:00
void queryReferrers(const Path & path, PathSet & referrers) override;
2015-09-18 01:22:06 +02:00
PathSet queryValidDerivers(const Path & path) override;
2015-09-18 01:22:06 +02:00
PathSet queryDerivationOutputs(const Path & path) override;
2015-09-18 01:22:06 +02:00
StringSet queryDerivationOutputNames(const Path & path) override;
2015-09-18 01:22:06 +02:00
Path queryPathFromHashPart(const string & hashPart) override;
2015-09-18 01:22:06 +02:00
PathSet querySubstitutablePaths(const PathSet & paths) override;
download-from-binary-cache: parallelise fetching of NAR info files Getting substitute information using the binary cache substituter has non-trivial latency overhead. A package or NixOS system configuration can have hundreds of dependencies, and in the worst case (when the local info cache is empty) we have to do a separate HTTP request for each of these. If the ping time to the server is t, getting N info files will take tN seconds; e.g., with a ping time of 0.1s to nixos.org, sequentially downloading 1000 info files (a typical NixOS config) will take at least 100 seconds. To fix this problem, the binary cache substituter can now perform requests in parallel. This required changing the substituter interface to support a function querySubstitutablePathInfos() that queries multiple paths at the same time, and rewriting queryMissing() to take advantage of parallelism. (Due to local caching, parallelising queryMissing() is sufficient for most use cases, since it's almost always called before building a derivation and thus fills the local info cache.) For example, parallelism speeds up querying all 1056 paths in a particular NixOS system configuration from 116s to 2.6s. It works so well because the eccentricity of the top-level derivation in the dependency graph is only 9. So we only need 10 round-trips (when using an unlimited number of parallel connections) to get everything. Currently we do a maximum of 150 parallel connections to the server. Thus it's important that the binary cache server (e.g. nixos.org) has a high connection limit. Alternatively we could use HTTP pipelining, but WWW::Curl doesn't support it and libcurl has a hard-coded limit of 5 requests per pipeline.
2012-07-07 01:08:20 +02:00
void querySubstitutablePathInfos(const PathSet & paths,
2015-09-18 01:22:06 +02:00
SubstitutablePathInfos & infos) override;
Path addToStore(const string & name, const Path & srcPath,
bool recursive = true, HashType hashAlgo = htSHA256,
2015-09-18 01:22:06 +02:00
PathFilter & filter = defaultPathFilter, bool repair = false) override;
2006-11-30 19:35:50 +01:00
Path addTextToStore(const string & name, const string & s,
2015-09-18 01:22:06 +02:00
const PathSet & references, bool repair = false) override;
2006-11-30 19:35:50 +01:00
void exportPath(const Path & path, bool sign,
2015-09-18 01:22:06 +02:00
Sink & sink) override;
Paths importPaths(bool requireSignature, Source & source,
std::shared_ptr<FSAccessor> accessor) override;
2015-09-18 01:22:06 +02:00
void buildPaths(const PathSet & paths, BuildMode buildMode) override;
2006-11-30 19:35:50 +01:00
BuildResult buildDerivation(const Path & drvPath, const BasicDerivation & drv,
BuildMode buildMode) override;
2015-09-18 01:22:06 +02:00
void ensurePath(const Path & path) override;
2006-11-30 19:35:50 +01:00
2015-09-18 01:22:06 +02:00
void addTempRoot(const Path & path) override;
2015-09-18 01:22:06 +02:00
void addIndirectRoot(const Path & path) override;
2015-09-18 01:22:06 +02:00
void syncWithGC() override;
2015-09-18 01:22:06 +02:00
Roots findRoots() override;
2015-09-18 01:22:06 +02:00
void collectGarbage(const GCOptions & options, GCResults & results) override;
2015-09-18 01:22:06 +02:00
void optimiseStore() override;
bool verifyStore(bool checkContents, bool repair) override;
void addSignatures(const Path & storePath, const StringSet & sigs) override;
2006-11-30 19:35:50 +01:00
private:
struct Connection
{
AutoCloseFD fd;
FdSink to;
FdSource from;
unsigned int daemonVersion;
2016-02-23 16:40:16 +01:00
~Connection();
void processStderr(Sink * sink = 0, Source * source = 0);
};
2006-12-04 14:28:14 +01:00
ref<Pool<Connection>> connections;
2016-02-24 17:33:53 +01:00
ref<Connection> openConnection();
void setOptions(ref<Connection> conn);
2006-11-30 19:35:50 +01:00
};
}