@cryptotaxi247 / infra-1 / commits / cf2adf33

evaluator memory tweaks (nar buffer too, but those went out a long time ago)

Eelco Dolstra committed Dec 29, 2019 at 00:15 UTC cf2adf33e340d66dc5ee2b690987470133c4751d
1 file changed +3 -2
delft/hydra.nix
+3 -2
@@ -38,7 +38,8 @@ in
38 # patchelf:master:3
39 xxx-jobset-repeats = nixos:reproducibility:1
40
41 - nar_buffer_size = ${let gb = 10; in toString (gb * 1024 * 1024 * 1024)}
41 + # https://status.nixos.org/prometheus/graph?g0.range_input=2w&g0.expr=hydra_memory_tokens_in_use&g0.tab=0
42 + nar_buffer_size = ${let gb = 16; in toString (gb * 1024 * 1024 * 1024)}
43
44 upload_logs_to_binary_cache = true
45
@@ -47,7 +48,7 @@ in
48
49 log_prefix = https://nix-cache.s3.amazonaws.com/
50
50 - evaluator_initial_heap_size = ${let gb = 20; in toString (gb * 1024 * 1024 * 1024)}
51 + evaluator_initial_heap_size = ${let gb = 30; in toString (gb * 1024 * 1024 * 1024)}
52
53 max_concurrent_evals = 1
54 '';