Skip to content

Commit ae11e54

Browse files
willcl-arkgithub-actions[bot]
authored andcommitted
set prune height to 1_000_000MB
Previously, prune=10000 was causing flushes of the UTXO set when block pruning was taking please, resulting in logs like: ❯ zcat 32000-instrumented-pr-debug.log.gz | rg UTXO 2026-02-12T07:22:57Z * Using 31990.0 MiB for in-memory UTXO set (plus up to 286.1 MiB of unused mempool space) 2026-02-12T07:28:51Z [warning] Flushing large (2 GiB) UTXO set to disk, it may take several minutes 2026-02-12T07:33:10Z [warning] Flushing large (3 GiB) UTXO set to disk, it may take several minutes 2026-02-12T07:37:23Z [warning] Flushing large (4 GiB) UTXO set to disk, it may take several minutes 2026-02-12T07:42:03Z [warning] Flushing large (4 GiB) UTXO set to disk, it may take several minutes 2026-02-12T07:46:34Z [warning] Flushing large (5 GiB) UTXO set to disk, it may take several minutes 2026-02-12T07:51:10Z [warning] Flushing large (6 GiB) UTXO set to disk, it may take several minutes 2026-02-12T07:55:57Z [warning] Flushing large (7 GiB) UTXO set to disk, it may take several minutes 2026-02-12T08:00:35Z [warning] Flushing large (8 GiB) UTXO set to disk, it may take several minutes 2026-02-12T08:05:16Z [warning] Flushing large (8 GiB) UTXO set to disk, it may take several minutes 2026-02-12T08:10:00Z [warning] Flushing large (8 GiB) UTXO set to disk, it may take several minutes 2026-02-12T08:14:36Z [warning] Flushing large (8 GiB) UTXO set to disk, it may take several minutes 2026-02-12T08:16:47Z [warning] Flushing large (8 GiB) UTXO set to disk, it may take several minutes and generally interrupting benchmarking. Remove this effect by setting prune to such a high value it will never trigger. Prune is **required** to permit us to continue syncing from a pruned datadir.
1 parent 746cac6 commit ae11e54

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

bench/benchmark_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def from_toml(cls, path: Path) -> BenchmarkConfig:
5555
stopatheight = 855000
5656
chain = "main"
5757
connect = "..."
58-
prune = 10000
58+
prune = 1000000
5959
daemon = false
6060
printtoconsole = false
6161

bench/configs/nightly.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ runs = 2
1414
stopatheight = 900000
1515
chain = "main"
1616
connect = "148.251.128.115:33333" # accepts whitelisted ip addrs only
17-
prune = 10000
17+
prune = 1000000
1818
daemon = false
1919
printtoconsole = false
2020

bench/configs/pr.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ runs = 2
1414
stopatheight = 900000
1515
chain = "main"
1616
connect = "148.251.128.115:33333"
17-
prune = 10000
17+
prune = 1000000
1818
daemon = false
1919
printtoconsole = false
2020

bench/configs/test-signet.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ runs = 1
1313
[bitcoind]
1414
stopatheight = 10000
1515
chain = "signet"
16-
prune = 1000
16+
prune = 1000000
1717
daemon = false
1818
printtoconsole = false
1919

0 commit comments

Comments
 (0)