patch attic to prefetch 32 chunks instead of 2
This commit is contained in:
parent
00a8ac69cf
commit
22204b49dd
3 changed files with 21 additions and 0 deletions
7
overlay/attic/default.nix
Normal file
7
overlay/attic/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
final: prev: {
|
||||
attic-server = prev.attic-server.overrideAttrs {
|
||||
patches = [
|
||||
./prefetch-32-chunks.patch
|
||||
];
|
||||
};
|
||||
}
|
13
overlay/attic/prefetch-32-chunks.patch
Normal file
13
overlay/attic/prefetch-32-chunks.patch
Normal file
|
@ -0,0 +1,13 @@
|
|||
diff --git a/server/src/api/binary_cache.rs b/server/src/api/binary_cache.rs
|
||||
index 02e4857..71eeee8 100644
|
||||
--- a/server/src/api/binary_cache.rs
|
||||
+++ b/server/src/api/binary_cache.rs
|
||||
@@ -262,7 +262,7 @@ async fn get_nar(
|
||||
|
||||
// TODO: Make num_prefetch configurable
|
||||
// The ideal size depends on the average chunk size
|
||||
- let merged = merge_chunks(chunks, streamer, storage, 2).map_err(|e| {
|
||||
+ let merged = merge_chunks(chunks, streamer, storage, 32).map_err(|e| {
|
||||
tracing::error!(%e, "Stream error");
|
||||
e
|
||||
});
|
|
@ -3,6 +3,7 @@ let
|
|||
overlays = [
|
||||
./zipline
|
||||
./bitwarden
|
||||
./attic
|
||||
];
|
||||
importedOverlays = map (m: import m) overlays;
|
||||
in
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue