From b6f7eb52a3bd82a1d51138d436e039c79f196836 Mon Sep 17 00:00:00 2001 From: Jared Lunde Date: Thu, 4 Jun 2026 15:49:37 -0700 Subject: [PATCH] chore(bench): drop committed rig run-artifacts; fix gitignore path The bench rig writes to bench/glidefs-pg/out/, but .gitignore only listed bench/out/, so smoke-run outputs (postgres.log, glidefs.toml, harness.conf) were swept into the scaler PR. Remove them and add the correct ignore path. Co-Authored-By: Claude Opus 4.8 (1M context) --- .gitignore | 1 + .../out/20260603-141450-smoke/glidefs.toml | 20 ---------- .../out/20260603-141450-smoke/harness.conf | 40 ------------------- .../out/20260603-141450-smoke/postgres.log | 3 -- .../out/20260603-141623-smoke/glidefs.toml | 20 ---------- 5 files changed, 1 insertion(+), 83 deletions(-) delete mode 100644 bench/glidefs-pg/out/20260603-141450-smoke/glidefs.toml delete mode 100644 bench/glidefs-pg/out/20260603-141450-smoke/harness.conf delete mode 100644 bench/glidefs-pg/out/20260603-141450-smoke/postgres.log delete mode 100644 bench/glidefs-pg/out/20260603-141623-smoke/glidefs.toml diff --git a/.gitignore b/.gitignore index 78f5dd0..9de2f8c 100644 --- a/.gitignore +++ b/.gitignore @@ -13,5 +13,6 @@ dist/ .wiki node_modules/ bench/out/ +bench/glidefs-pg/out/ .mcp.json .claude diff --git a/bench/glidefs-pg/out/20260603-141450-smoke/glidefs.toml b/bench/glidefs-pg/out/20260603-141450-smoke/glidefs.toml deleted file mode 100644 index 44d2f79..0000000 --- a/bench/glidefs-pg/out/20260603-141450-smoke/glidefs.toml +++ /dev/null @@ -1,20 +0,0 @@ -[cache] -dir = "/tmp/gfpg.AqPOOe/cache" -disk_size_gb = 20.0 -memory_size_gb = 2.0 - -[storage] -url = "file:///tmp/gfpg.AqPOOe/objstore" - -[servers.nbd] -addresses = ["127.0.0.1:10809"] -unix_socket = "/tmp/gfpg.AqPOOe/gf.nbd.sock" -api_address = "127.0.0.1:8080" -block_size = 131072 -flush_threshold = 500 - -[[servers.nbd.exports]] -name = "pgdata" -size_gb = 10 -transport = "nbd" -compaction_cooldown = 0 diff --git a/bench/glidefs-pg/out/20260603-141450-smoke/harness.conf b/bench/glidefs-pg/out/20260603-141450-smoke/harness.conf deleted file mode 100644 index df238c3..0000000 --- a/bench/glidefs-pg/out/20260603-141450-smoke/harness.conf +++ /dev/null @@ -1,40 +0,0 @@ -# Harness baseline — the substrate-relevant subset of -# packer/files/postgresql/00-beyond.conf. Memory knobs are FIXED here for -# reproducibility (the real image autotunes them via src/config.rs); the -# harness's job is to isolate the storage knobs, so everything except the knob -# under test is held constant. No extensions, no networking, no TLS. - -# fixed memory (reproducibility, not under test) -shared_buffers = 1GB -effective_cache_size = 3GB -work_mem = 32MB -maintenance_work_mem = 256MB -max_wal_size = 8GB -min_wal_size = 1GB - -# storage cost model (matches 00-beyond.conf) -random_page_cost = 1.1 -effective_io_concurrency = 200 - -# durability / WAL (matches 00-beyond.conf; wal_level=replica is lighter than -# logical and constant across experiments, so it doesn't bias the comparison) -fsync = on -synchronous_commit = on -full_page_writes = on -wal_sync_method = fdatasync -wal_compression = lz4 -wal_level = replica - -# checkpoints / bgwriter — the coalescing knobs (C experiments override these) -checkpoint_timeout = 15min -checkpoint_completion_target = 0.9 -bgwriter_delay = 100ms -bgwriter_lru_maxpages = 1000 - -# autovacuum (E experiments override) -autovacuum_vacuum_scale_factor = 0.1 -autovacuum_naptime = 30s - -# observability for the run log -log_checkpoints = on -log_min_messages = warning diff --git a/bench/glidefs-pg/out/20260603-141450-smoke/postgres.log b/bench/glidefs-pg/out/20260603-141450-smoke/postgres.log deleted file mode 100644 index 9740da3..0000000 --- a/bench/glidefs-pg/out/20260603-141450-smoke/postgres.log +++ /dev/null @@ -1,3 +0,0 @@ -2026-06-03 14:14:52.132 PDT [1239168] LOG: invalid value for parameter "wal_compression": "lz4" -2026-06-03 14:14:52.132 PDT [1239168] HINT: Available values: pglz, on, off. -2026-06-03 14:14:52.132 PDT [1239168] FATAL: configuration file "/tmp/gfpg.AqPOOe/mnt/pgdata/harness.conf" contains errors diff --git a/bench/glidefs-pg/out/20260603-141623-smoke/glidefs.toml b/bench/glidefs-pg/out/20260603-141623-smoke/glidefs.toml deleted file mode 100644 index 989f88a..0000000 --- a/bench/glidefs-pg/out/20260603-141623-smoke/glidefs.toml +++ /dev/null @@ -1,20 +0,0 @@ -[cache] -dir = "/tmp/gfpg.Kz2A8C/cache" -disk_size_gb = 20.0 -memory_size_gb = 2.0 - -[storage] -url = "file:///tmp/gfpg.Kz2A8C/objstore" - -[servers.nbd] -addresses = ["127.0.0.1:10899"] -unix_socket = "/tmp/gfpg.Kz2A8C/gf.nbd.sock" -api_address = "127.0.0.1:18080" -block_size = 131072 -flush_threshold = 500 - -[[servers.nbd.exports]] -name = "pgdata" -size_gb = 10 -transport = "nbd" -compaction_cooldown = 0