bench: simplify cloud bench flow and align phased naming
Some checks failed
CI / Test (OTP 27.2 / Elixir 1.18.2) (push) Failing after 0s
CI / Test (OTP 28.4 / Elixir 1.19.4 + E2E) (push) Failing after 0s

This commit is contained in:
2026-03-20 20:48:41 +01:00
parent 4bd8663126
commit 9ed1d80b7f
6 changed files with 277 additions and 275 deletions

View File

@@ -43,6 +43,9 @@ run_event() {
-r "${PARRHESIA_BENCH_EVENT_RATE:-50}" \ -r "${PARRHESIA_BENCH_EVENT_RATE:-50}" \
-k "${PARRHESIA_BENCH_KEEPALIVE_SECONDS:-5}" \ -k "${PARRHESIA_BENCH_KEEPALIVE_SECONDS:-5}" \
-t "${bench_threads}" \ -t "${bench_threads}" \
--send-strategy "${PARRHESIA_BENCH_EVENT_SEND_STRATEGY:-pipelined}" \
--inflight "${PARRHESIA_BENCH_EVENT_INFLIGHT:-32}" \
--ack-timeout "${PARRHESIA_BENCH_EVENT_ACK_TIMEOUT:-30}" \
"${relay_url}" "${relay_url}"
} }
@@ -68,11 +71,11 @@ run_seed() {
echo "==> nostr-bench seed ${relay_url}" echo "==> nostr-bench seed ${relay_url}"
"$bench_bin" seed --json \ "$bench_bin" seed --json \
--target-accepted "$target_accepted" \ --target-accepted "$target_accepted" \
-c "${PARRHESIA_BENCH_SEED_CONNECTION_COUNT:-64}" \ -c "${PARRHESIA_BENCH_SEED_CONNECTION_COUNT:-5000}" \
-r "${PARRHESIA_BENCH_SEED_CONNECTION_RATE:-64}" \ -r "${PARRHESIA_BENCH_SEED_CONNECTION_RATE:-5000}" \
-k "${PARRHESIA_BENCH_SEED_KEEPALIVE_SECONDS:-0}" \ -k "${PARRHESIA_BENCH_SEED_KEEPALIVE_SECONDS:-0}" \
-t "${bench_threads}" \ -t "${bench_threads}" \
--send-strategy "${PARRHESIA_BENCH_SEED_SEND_STRATEGY:-ack-loop}" \ --send-strategy "${PARRHESIA_BENCH_SEED_SEND_STRATEGY:-pipelined}" \
--inflight "${PARRHESIA_BENCH_SEED_INFLIGHT:-32}" \ --inflight "${PARRHESIA_BENCH_SEED_INFLIGHT:-32}" \
--ack-timeout "${PARRHESIA_BENCH_SEED_ACK_TIMEOUT:-30}" \ --ack-timeout "${PARRHESIA_BENCH_SEED_ACK_TIMEOUT:-30}" \
"${relay_url}" "${relay_url}"

View File

@@ -40,10 +40,12 @@ const NOSTREAM_REDIS_IMAGE = "redis:7.0.5-alpine3.16";
const SEED_TOLERANCE_RATIO = 0.01; const SEED_TOLERANCE_RATIO = 0.01;
const SEED_MAX_ROUNDS = 4; const SEED_MAX_ROUNDS = 4;
const SEED_KEEPALIVE_SECONDS = 0; const SEED_KEEPALIVE_SECONDS = 0;
const SEED_EVENTS_PER_CONNECTION_TARGET = 2000; const SEED_CONNECTION_COUNT = 5000;
const SEED_CONNECTIONS_MIN = 1; const SEED_CONNECTION_RATE = 5000;
const SEED_CONNECTIONS_MAX = 512; const EVENT_SEND_STRATEGY = "pipelined";
const SEED_SEND_STRATEGY = "ack-loop"; const EVENT_INFLIGHT = 32;
const EVENT_ACK_TIMEOUT_SECONDS = 30;
const SEED_SEND_STRATEGY = "pipelined";
const SEED_INFLIGHT = 32; const SEED_INFLIGHT = 32;
const SEED_ACK_TIMEOUT_SECONDS = 30; const SEED_ACK_TIMEOUT_SECONDS = 30;
const PHASE_PREP_OFFSET_MINUTES = 3; const PHASE_PREP_OFFSET_MINUTES = 3;
@@ -54,7 +56,6 @@ const DEFAULTS = {
clientType: "cpx31", clientType: "cpx31",
imageBase: "ubuntu-24.04", imageBase: "ubuntu-24.04",
clients: 3, clients: 3,
runs: 5,
targets: DEFAULT_TARGETS, targets: DEFAULT_TARGETS,
historyFile: "bench/history.jsonl", historyFile: "bench/history.jsonl",
artifactsDir: "bench/cloud_artifacts", artifactsDir: "bench/cloud_artifacts",
@@ -73,17 +74,17 @@ const DEFAULTS = {
warmEvents: 50000, warmEvents: 50000,
hotEvents: 500000, hotEvents: 500000,
bench: { bench: {
connectCount: 3000, connectCount: 50000,
connectRate: 1500, connectRate: 10000,
echoCount: 3000, echoCount: 50000,
echoRate: 1500, echoRate: 10000,
echoSize: 512, echoSize: 512,
eventCount: 5000, eventCount: 50000,
eventRate: 2000, eventRate: 10000,
reqCount: 3000, reqCount: 50000,
reqRate: 1500, reqRate: 10000,
reqLimit: 50, reqLimit: 50,
keepaliveSeconds: 10, keepaliveSeconds: 120,
threads: 0, threads: 0,
}, },
}; };
@@ -103,7 +104,6 @@ Options:
--client-type <name> (default: ${DEFAULTS.clientType}) --client-type <name> (default: ${DEFAULTS.clientType})
--image-base <name> (default: ${DEFAULTS.imageBase}) --image-base <name> (default: ${DEFAULTS.imageBase})
--clients <n> (default: ${DEFAULTS.clients}) --clients <n> (default: ${DEFAULTS.clients})
--runs <n> (default: ${DEFAULTS.runs})
--targets <csv> (default: ${DEFAULT_TARGETS.join(",")}) --targets <csv> (default: ${DEFAULT_TARGETS.join(",")})
Source selection (choose one style): Source selection (choose one style):
@@ -151,7 +151,7 @@ Notes:
- In interactive terminals, prompts you to pick + confirm the datacenter unless --yes is set. - In interactive terminals, prompts you to pick + confirm the datacenter unless --yes is set.
- Caches built nostr-bench at _build/bench/nostr-bench and reuses it when valid. - Caches built nostr-bench at _build/bench/nostr-bench and reuses it when valid.
- Auto-tunes Postgres/Redis/app pool sizing from server RAM + CPU for DB-backed targets. - Auto-tunes Postgres/Redis/app pool sizing from server RAM + CPU for DB-backed targets.
- Randomizes target order per run and wipes persisted target data directories on each start. - Randomizes target order and wipes persisted target data directories on each start.
- Creates a Hetzner Cloud firewall restricting inbound access to benchmark ports from known IPs only. - Creates a Hetzner Cloud firewall restricting inbound access to benchmark ports from known IPs only.
- Handles Ctrl-C / SIGTERM with best-effort cloud cleanup. - Handles Ctrl-C / SIGTERM with best-effort cloud cleanup.
- Tries nix .#nostrBenchStaticX86_64Musl first; falls back to docker-built portable nostr-bench. - Tries nix .#nostrBenchStaticX86_64Musl first; falls back to docker-built portable nostr-bench.
@@ -201,9 +201,6 @@ function parseArgs(argv) {
case "--clients": case "--clients":
opts.clients = intOpt(arg, argv[++i]); opts.clients = intOpt(arg, argv[++i]);
break; break;
case "--runs":
opts.runs = intOpt(arg, argv[++i]);
break;
case "--targets": case "--targets":
opts.targets = argv[++i] opts.targets = argv[++i]
.split(",") .split(",")
@@ -1053,11 +1050,8 @@ async function runClientSeedingRound({
}; };
} }
const seedConnectionCount = Math.min( const seedConnectionCount = SEED_CONNECTION_COUNT;
SEED_CONNECTIONS_MAX, const seedConnectionRate = SEED_CONNECTION_RATE;
Math.max(SEED_CONNECTIONS_MIN, Math.ceil(desiredAccepted / SEED_EVENTS_PER_CONNECTION_TARGET)),
);
const seedConnectionRate = Math.max(1, seedConnectionCount);
const seedEnvPrefix = [ const seedEnvPrefix = [
`PARRHESIA_BENCH_SEED_TARGET_ACCEPTED=${desiredAccepted}`, `PARRHESIA_BENCH_SEED_TARGET_ACCEPTED=${desiredAccepted}`,
@@ -1947,245 +1941,242 @@ async function main() {
}; };
const results = []; const results = [];
const targetOrderPerRun = []; const targetOrder = shuffled(opts.targets);
phaseLogger.logPhase(`[phase] benchmark execution (mode=${opts.quick ? "quick" : "phased"})`); phaseLogger.logPhase(`[phase] benchmark execution (mode=${opts.quick ? "quick" : "phased"})`);
for (let runIndex = 1; runIndex <= opts.runs; runIndex += 1) { console.log(`[bench] target-order=${targetOrder.join(",")}`);
const runTargets = shuffled(opts.targets);
targetOrderPerRun.push({ run: runIndex, targets: runTargets });
console.log(`[bench] run ${runIndex}/${opts.runs} target-order=${runTargets.join(",")}`);
for (const target of runTargets) { for (const target of targetOrder) {
console.log(`[bench] run ${runIndex}/${opts.runs} target=${target}`); console.log(`[bench] target=${target}`);
const targetStartTime = new Date().toISOString(); const targetStartTime = new Date().toISOString();
const serverEnvPrefix = [ const serverEnvPrefix = [
`PARRHESIA_IMAGE=${shellEscape(parrhesiaImageOnServer || "parrhesia:latest")}`, `PARRHESIA_IMAGE=${shellEscape(parrhesiaImageOnServer || "parrhesia:latest")}`,
`POSTGRES_IMAGE=${shellEscape(opts.postgresImage)}`, `POSTGRES_IMAGE=${shellEscape(opts.postgresImage)}`,
`STRFRY_IMAGE=${shellEscape(opts.strfryImage)}`, `STRFRY_IMAGE=${shellEscape(opts.strfryImage)}`,
`NOSTR_RS_IMAGE=${shellEscape(opts.nostrRsImage)}`, `NOSTR_RS_IMAGE=${shellEscape(opts.nostrRsImage)}`,
`NOSTREAM_REPO=${shellEscape(opts.nostreamRepo)}`, `NOSTREAM_REPO=${shellEscape(opts.nostreamRepo)}`,
`NOSTREAM_REF=${shellEscape(opts.nostreamRef)}`, `NOSTREAM_REF=${shellEscape(opts.nostreamRef)}`,
`NOSTREAM_REDIS_IMAGE=${shellEscape(NOSTREAM_REDIS_IMAGE)}`, `NOSTREAM_REDIS_IMAGE=${shellEscape(NOSTREAM_REDIS_IMAGE)}`,
`HAVEN_IMAGE=${shellEscape(opts.havenImage)}`, `HAVEN_IMAGE=${shellEscape(opts.havenImage)}`,
`HAVEN_RELAY_URL=${shellEscape(`${serverIp}:3355`)}`, `HAVEN_RELAY_URL=${shellEscape(`${serverIp}:3355`)}`,
].join(" "); ].join(" ");
try { try {
await sshExec(serverIp, keyPath, `${serverEnvPrefix} /root/cloud-bench-server.sh ${shellEscape(startCommands[target])}`); await sshExec(serverIp, keyPath, `${serverEnvPrefix} /root/cloud-bench-server.sh ${shellEscape(startCommands[target])}`);
} catch (error) { } catch (error) {
console.error(`[bench] target startup failed target=${target} run=${runIndex}`); console.error(`[bench] target startup failed target=${target}`);
if (error?.stdout?.trim()) { if (error?.stdout?.trim()) {
console.error(`[bench] server startup stdout:\n${error.stdout.trim()}`); console.error(`[bench] server startup stdout:\n${error.stdout.trim()}`);
} }
if (error?.stderr?.trim()) { if (error?.stderr?.trim()) {
console.error(`[bench] server startup stderr:\n${error.stderr.trim()}`); console.error(`[bench] server startup stderr:\n${error.stderr.trim()}`);
} }
throw error; throw error;
}
const relayUrl = relayUrls[target];
const runTargetDir = path.join(artifactsDir, target);
fs.mkdirSync(runTargetDir, { recursive: true });
const benchEnvPrefix = [
`PARRHESIA_BENCH_CONNECT_COUNT=${opts.bench.connectCount}`,
`PARRHESIA_BENCH_CONNECT_RATE=${opts.bench.connectRate}`,
`PARRHESIA_BENCH_ECHO_COUNT=${opts.bench.echoCount}`,
`PARRHESIA_BENCH_ECHO_RATE=${opts.bench.echoRate}`,
`PARRHESIA_BENCH_ECHO_SIZE=${opts.bench.echoSize}`,
`PARRHESIA_BENCH_EVENT_COUNT=${opts.bench.eventCount}`,
`PARRHESIA_BENCH_EVENT_RATE=${opts.bench.eventRate}`,
`PARRHESIA_BENCH_EVENT_SEND_STRATEGY=${EVENT_SEND_STRATEGY}`,
`PARRHESIA_BENCH_EVENT_INFLIGHT=${EVENT_INFLIGHT}`,
`PARRHESIA_BENCH_EVENT_ACK_TIMEOUT=${EVENT_ACK_TIMEOUT_SECONDS}`,
`PARRHESIA_BENCH_REQ_COUNT=${opts.bench.reqCount}`,
`PARRHESIA_BENCH_REQ_RATE=${opts.bench.reqRate}`,
`PARRHESIA_BENCH_REQ_LIMIT=${opts.bench.reqLimit}`,
`PARRHESIA_BENCH_KEEPALIVE_SECONDS=${opts.bench.keepaliveSeconds}`,
`PARRHESIA_BENCH_THREADS=${opts.bench.threads}`,
].join(" ");
const benchArgs = { clientInfos, keyPath, benchEnvPrefix, relayUrl };
const fetchEventCountForTarget = async () =>
fetchServerEventCount({
target,
serverIp,
keyPath,
serverEnvPrefix,
});
if (opts.quick) {
// Flat mode: run all benchmarks in one shot
const clientRunResults = await runSingleBenchmark({
...benchArgs,
mode: "all",
artifactDir: runTargetDir,
});
results.push({
target,
relay_url: relayUrl,
mode: "flat",
clients: clientRunResults,
});
} else {
// Phased mode: one sequence per target (seed each target DB only once)
let eventsInDb = 0;
console.log(`[bench] ${target}: connect`);
const connectResults = await runSingleBenchmark({
...benchArgs,
mode: "connect",
artifactDir: path.join(runTargetDir, "connect"),
});
console.log(`[bench] ${target}: echo`);
const echoResults = await runSingleBenchmark({
...benchArgs,
mode: "echo",
artifactDir: path.join(runTargetDir, "echo"),
});
// Phase: cold
console.log(`[bench] ${target}: req (cold, ${eventsInDb} events)`);
const coldReqResults = await runSingleBenchmark({
...benchArgs,
mode: "req",
artifactDir: path.join(runTargetDir, "cold-req"),
});
console.log(`[bench] ${target}: event (cold, ${eventsInDb} events)`);
const coldEventResults = await runSingleBenchmark({
...benchArgs,
mode: "event",
artifactDir: path.join(runTargetDir, "cold-event"),
});
const estimatedColdEventWritten = countEventsWritten(coldEventResults);
eventsInDb += estimatedColdEventWritten;
const authoritativeAfterCold = await fetchEventCountForTarget();
if (Number.isInteger(authoritativeAfterCold) && authoritativeAfterCold >= 0) {
eventsInDb = authoritativeAfterCold;
} }
const relayUrl = relayUrls[target]; console.log(`[bench] ${target}: ~${eventsInDb} events in DB after cold phase`);
const runTargetDir = path.join(artifactsDir, target, `run-${runIndex}`);
fs.mkdirSync(runTargetDir, { recursive: true });
const benchEnvPrefix = [ // Fill to warm
`PARRHESIA_BENCH_CONNECT_COUNT=${opts.bench.connectCount}`, const fillWarm = await smartFill({
`PARRHESIA_BENCH_CONNECT_RATE=${opts.bench.connectRate}`, target,
`PARRHESIA_BENCH_ECHO_COUNT=${opts.bench.echoCount}`, phase: "warm",
`PARRHESIA_BENCH_ECHO_RATE=${opts.bench.echoRate}`, targetCount: opts.warmEvents,
`PARRHESIA_BENCH_ECHO_SIZE=${opts.bench.echoSize}`, eventsInDb,
`PARRHESIA_BENCH_EVENT_COUNT=${opts.bench.eventCount}`, relayUrl,
`PARRHESIA_BENCH_EVENT_RATE=${opts.bench.eventRate}`, serverIp,
`PARRHESIA_BENCH_REQ_COUNT=${opts.bench.reqCount}`, keyPath,
`PARRHESIA_BENCH_REQ_RATE=${opts.bench.reqRate}`, clientInfos,
`PARRHESIA_BENCH_REQ_LIMIT=${opts.bench.reqLimit}`, serverEnvPrefix,
`PARRHESIA_BENCH_KEEPALIVE_SECONDS=${opts.bench.keepaliveSeconds}`, artifactDir: path.join(runTargetDir, "fill-warm"),
`PARRHESIA_BENCH_THREADS=${opts.bench.threads}`, threads: opts.bench.threads,
].join(" "); skipFill: target === "haven",
fetchEventCount: fetchEventCountForTarget,
});
eventsInDb = fillWarm.eventsInDb;
const benchArgs = { clientInfos, keyPath, benchEnvPrefix, relayUrl }; // Phase: warm
const fetchEventCountForTarget = async () => console.log(`[bench] ${target}: req (warm, ~${eventsInDb} events)`);
fetchServerEventCount({ const warmReqResults = await runSingleBenchmark({
target, ...benchArgs,
serverIp, mode: "req",
keyPath, artifactDir: path.join(runTargetDir, "warm-req"),
serverEnvPrefix, });
});
if (opts.quick) { console.log(`[bench] ${target}: event (warm, ~${eventsInDb} events)`);
// Flat mode: run all benchmarks in one shot (backward compat) const warmEventResults = await runSingleBenchmark({
const clientRunResults = await runSingleBenchmark({ ...benchArgs,
...benchArgs, mode: "event",
mode: "all", artifactDir: path.join(runTargetDir, "warm-event"),
artifactDir: runTargetDir, });
}); const estimatedWarmEventWritten = countEventsWritten(warmEventResults);
eventsInDb += estimatedWarmEventWritten;
results.push({ const authoritativeAfterWarmEvent = await fetchEventCountForTarget();
run: runIndex, if (Number.isInteger(authoritativeAfterWarmEvent) && authoritativeAfterWarmEvent >= 0) {
target, eventsInDb = authoritativeAfterWarmEvent;
relay_url: relayUrl, }
mode: "flat",
clients: clientRunResults,
});
} else {
// Phased mode: separate benchmarks at different DB fill levels
let eventsInDb = 0;
console.log(`[bench] ${target}: connect`); // Fill to hot
const connectResults = await runSingleBenchmark({ const fillHot = await smartFill({
...benchArgs, target,
mode: "connect", phase: "hot",
artifactDir: path.join(runTargetDir, "connect"), targetCount: opts.hotEvents,
}); eventsInDb,
relayUrl,
serverIp,
keyPath,
clientInfos,
serverEnvPrefix,
artifactDir: path.join(runTargetDir, "fill-hot"),
threads: opts.bench.threads,
skipFill: target === "haven",
fetchEventCount: fetchEventCountForTarget,
});
eventsInDb = fillHot.eventsInDb;
console.log(`[bench] ${target}: echo`); // Phase: hot
const echoResults = await runSingleBenchmark({ console.log(`[bench] ${target}: req (hot, ~${eventsInDb} events)`);
...benchArgs, const hotReqResults = await runSingleBenchmark({
mode: "echo", ...benchArgs,
artifactDir: path.join(runTargetDir, "echo"), mode: "req",
}); artifactDir: path.join(runTargetDir, "hot-req"),
});
// Phase: empty console.log(`[bench] ${target}: event (hot, ~${eventsInDb} events)`);
console.log(`[bench] ${target}: req (empty, ${eventsInDb} events)`); const hotEventResults = await runSingleBenchmark({
const emptyReqResults = await runSingleBenchmark({ ...benchArgs,
...benchArgs, mode: "event",
mode: "req", artifactDir: path.join(runTargetDir, "hot-event"),
artifactDir: path.join(runTargetDir, "empty-req"), });
});
console.log(`[bench] ${target}: event (empty, ${eventsInDb} events)`); results.push({
const emptyEventResults = await runSingleBenchmark({ target,
...benchArgs, relay_url: relayUrl,
mode: "event", mode: "phased",
artifactDir: path.join(runTargetDir, "empty-event"), phases: {
}); connect: { clients: connectResults },
const estimatedEmptyEventWritten = countEventsWritten(emptyEventResults); echo: { clients: echoResults },
eventsInDb += estimatedEmptyEventWritten; cold: {
req: { clients: coldReqResults },
const authoritativeAfterEmpty = await fetchEventCountForTarget(); event: { clients: coldEventResults },
if (Number.isInteger(authoritativeAfterEmpty) && authoritativeAfterEmpty >= 0) { db_events_before: 0,
eventsInDb = authoritativeAfterEmpty;
}
console.log(`[bench] ${target}: ~${eventsInDb} events in DB after empty phase`);
// Fill to warm
const fillWarm = await smartFill({
target,
phase: "warm",
targetCount: opts.warmEvents,
eventsInDb,
relayUrl,
serverIp,
keyPath,
clientInfos,
serverEnvPrefix,
artifactDir: path.join(runTargetDir, "fill-warm"),
threads: opts.bench.threads,
skipFill: target === "haven",
fetchEventCount: fetchEventCountForTarget,
});
eventsInDb = fillWarm.eventsInDb;
// Phase: warm
console.log(`[bench] ${target}: req (warm, ~${eventsInDb} events)`);
const warmReqResults = await runSingleBenchmark({
...benchArgs,
mode: "req",
artifactDir: path.join(runTargetDir, "warm-req"),
});
console.log(`[bench] ${target}: event (warm, ~${eventsInDb} events)`);
const warmEventResults = await runSingleBenchmark({
...benchArgs,
mode: "event",
artifactDir: path.join(runTargetDir, "warm-event"),
});
const estimatedWarmEventWritten = countEventsWritten(warmEventResults);
eventsInDb += estimatedWarmEventWritten;
const authoritativeAfterWarmEvent = await fetchEventCountForTarget();
if (Number.isInteger(authoritativeAfterWarmEvent) && authoritativeAfterWarmEvent >= 0) {
eventsInDb = authoritativeAfterWarmEvent;
}
// Fill to hot
const fillHot = await smartFill({
target,
phase: "hot",
targetCount: opts.hotEvents,
eventsInDb,
relayUrl,
serverIp,
keyPath,
clientInfos,
serverEnvPrefix,
artifactDir: path.join(runTargetDir, "fill-hot"),
threads: opts.bench.threads,
skipFill: target === "haven",
fetchEventCount: fetchEventCountForTarget,
});
eventsInDb = fillHot.eventsInDb;
// Phase: hot
console.log(`[bench] ${target}: req (hot, ~${eventsInDb} events)`);
const hotReqResults = await runSingleBenchmark({
...benchArgs,
mode: "req",
artifactDir: path.join(runTargetDir, "hot-req"),
});
console.log(`[bench] ${target}: event (hot, ~${eventsInDb} events)`);
const hotEventResults = await runSingleBenchmark({
...benchArgs,
mode: "event",
artifactDir: path.join(runTargetDir, "hot-event"),
});
results.push({
run: runIndex,
target,
relay_url: relayUrl,
mode: "phased",
phases: {
connect: { clients: connectResults },
echo: { clients: echoResults },
empty: {
req: { clients: emptyReqResults },
event: { clients: emptyEventResults },
db_events_before: 0,
},
warm: {
req: { clients: warmReqResults },
event: { clients: warmEventResults },
db_events_before: fillWarm.eventsInDb,
seeded: fillWarm.seeded,
wiped: fillWarm.wiped,
},
hot: {
req: { clients: hotReqResults },
event: { clients: hotEventResults },
db_events_before: fillHot.eventsInDb,
seeded: fillHot.seeded,
wiped: fillHot.wiped,
},
}, },
}); warm: {
} req: { clients: warmReqResults },
event: { clients: warmEventResults },
db_events_before: fillWarm.eventsInDb,
seeded: fillWarm.seeded,
wiped: fillWarm.wiped,
},
hot: {
req: { clients: hotReqResults },
event: { clients: hotEventResults },
db_events_before: fillHot.eventsInDb,
seeded: fillHot.seeded,
wiped: fillHot.wiped,
},
},
});
}
// Collect Prometheus metrics for this target's benchmark window. // Collect Prometheus metrics for this target's benchmark window.
if (opts.monitoring) { if (opts.monitoring) {
const metrics = await collectMetrics({ const metrics = await collectMetrics({
serverIp, serverIp,
startTime: targetStartTime, startTime: targetStartTime,
endTime: new Date().toISOString(), endTime: new Date().toISOString(),
}); });
if (metrics) { if (metrics) {
const metricsPath = path.join(runTargetDir, "metrics.json"); const metricsPath = path.join(runTargetDir, "metrics.json");
fs.writeFileSync(metricsPath, JSON.stringify(metrics, null, 2)); fs.writeFileSync(metricsPath, JSON.stringify(metrics, null, 2));
console.log(`[monitoring] saved ${path.relative(ROOT_DIR, metricsPath)}`); console.log(`[monitoring] saved ${path.relative(ROOT_DIR, metricsPath)}`);
}
} }
} }
} }
@@ -2224,7 +2215,6 @@ async function main() {
machine_id: os.hostname(), machine_id: os.hostname(),
git_tag: gitTag, git_tag: gitTag,
git_commit: gitCommit, git_commit: gitCommit,
runs: opts.runs,
source: { source: {
kind: "cloud", kind: "cloud",
mode: parrhesiaSource.mode, mode: parrhesiaSource.mode,
@@ -2248,9 +2238,8 @@ async function main() {
}, },
}, },
bench: { bench: {
runs: opts.runs,
targets: opts.targets, targets: opts.targets,
target_order_per_run: targetOrderPerRun, target_order: targetOrder,
mode: opts.quick ? "flat" : "phased", mode: opts.quick ? "flat" : "phased",
warm_events: opts.warmEvents, warm_events: opts.warmEvents,
hot_events: opts.hotEvents, hot_events: opts.hotEvents,

View File

@@ -210,8 +210,8 @@ export function summarisePhasedResults(results) {
} }
// Per-level req and event metrics // Per-level req and event metrics
for (const level of ["empty", "warm", "hot"]) { for (const level of ["cold", "warm", "hot"]) {
const phase = phases[level]; const phase = phases[level] || (level === "cold" ? phases.empty : undefined);
if (!phase) continue; if (!phase) continue;
const reqClients = (phase.req?.clients || []) const reqClients = (phase.req?.clients || [])

View File

@@ -27,7 +27,7 @@ Examples:
just e2e marmot just e2e marmot
just e2e node-sync just e2e node-sync
just bench compare just bench compare
just bench cloud --clients 3 --runs 3 just bench cloud --clients 3
EOF EOF
exit 0 exit 0
fi fi
@@ -77,7 +77,7 @@ Examples:
just bench collect just bench collect
just bench update --machine all just bench update --machine all
just bench at v0.5.0 just bench at v0.5.0
just bench cloud --clients 3 --runs 3 just bench cloud --clients 3
just bench cloud --targets parrhesia-pg,nostream,haven --nostream-ref main just bench cloud --targets parrhesia-pg,nostream,haven --nostream-ref main
EOF EOF
exit 0 exit 0

View File

@@ -18,7 +18,6 @@ Behavior:
- Adds smoke defaults when --quick is set (unless already provided): - Adds smoke defaults when --quick is set (unless already provided):
--server-type cx23 --server-type cx23
--client-type cx23 --client-type cx23
--runs 1
--clients 1 --clients 1
--connect-count 20 --connect-count 20
--connect-rate 20 --connect-rate 20
@@ -42,7 +41,7 @@ Everything else is passed through unchanged.
Examples: Examples:
just bench cloud just bench cloud
just bench cloud --quick just bench cloud --quick
just bench cloud --clients 2 --runs 1 --targets parrhesia-memory just bench cloud --clients 2 --targets parrhesia-memory
just bench cloud --image ghcr.io/owner/parrhesia:latest --threads 4 just bench cloud --image ghcr.io/owner/parrhesia:latest --threads 4
just bench cloud --no-monitoring just bench cloud --no-monitoring
just bench cloud --yes --datacenter auto just bench cloud --yes --datacenter auto
@@ -106,7 +105,6 @@ done
if [[ "$QUICK" == "1" ]]; then if [[ "$QUICK" == "1" ]]; then
add_default_if_missing "--server-type" "cx23" add_default_if_missing "--server-type" "cx23"
add_default_if_missing "--client-type" "cx23" add_default_if_missing "--client-type" "cx23"
add_default_if_missing "--runs" "1"
add_default_if_missing "--clients" "1" add_default_if_missing "--clients" "1"
add_default_if_missing "--connect-count" "20" add_default_if_missing "--connect-count" "20"

View File

@@ -207,7 +207,7 @@ const presentBaselines = [
...[...discoveredBaselines].filter((srv) => !preferredBaselineOrder.includes(srv)).sort((a, b) => a.localeCompare(b)), ...[...discoveredBaselines].filter((srv) => !preferredBaselineOrder.includes(srv)).sort((a, b) => a.localeCompare(b)),
]; ];
// --- Colour palette per server: [empty, warm, hot] --- // --- Colour palette per server: [cold, warm, hot] ---
const serverColours = { const serverColours = {
"parrhesia-pg": ["#93c5fd", "#3b82f6", "#1e40af"], "parrhesia-pg": ["#93c5fd", "#3b82f6", "#1e40af"],
"parrhesia-memory": ["#86efac", "#22c55e", "#166534"], "parrhesia-memory": ["#86efac", "#22c55e", "#166534"],
@@ -218,12 +218,12 @@ const serverColours = {
}; };
const levelStyles = [ const levelStyles = [
/* empty */ { dt: 3, pt: 6, ps: 0.7, lw: 1.5 }, /* cold */ { dt: 3, pt: 6, ps: 0.7, lw: 1.5 },
/* warm */ { dt: 2, pt: 8, ps: 0.8, lw: 1.5 }, /* warm */ { dt: 2, pt: 8, ps: 0.8, lw: 1.5 },
/* hot */ { dt: 1, pt: 7, ps: 1.0, lw: 2 }, /* hot */ { dt: 1, pt: 7, ps: 1.0, lw: 2 },
]; ];
const levels = ["empty", "warm", "hot"]; const levels = ["cold", "warm", "hot"];
const shortLabel = { const shortLabel = {
"parrhesia-pg": "pg", "parrhesia-memory": "mem", "parrhesia-pg": "pg", "parrhesia-memory": "mem",
@@ -233,19 +233,31 @@ const shortLabel = {
const allServers = ["parrhesia-pg", "parrhesia-memory", ...presentBaselines]; const allServers = ["parrhesia-pg", "parrhesia-memory", ...presentBaselines];
function isPhased(e) {
for (const srv of Object.values(e.servers || {})) {
if (srv.event_empty_tps !== undefined) return true;
}
return false;
}
// Build phased key: "event_tps" + "empty" → "event_empty_tps"
function phasedKey(base, level) { function phasedKey(base, level) {
const idx = base.lastIndexOf("_"); const idx = base.lastIndexOf("_");
return `${base.slice(0, idx)}_${level}_${base.slice(idx + 1)}`; return `${base.slice(0, idx)}_${level}_${base.slice(idx + 1)}`;
} }
function phasedValue(d, base, level) {
const direct = d?.[phasedKey(base, level)];
if (direct !== undefined) return direct;
if (level === "cold") {
// Backward compatibility for historical entries written with `empty` phase names.
const legacy = d?.[phasedKey(base, "empty")];
if (legacy !== undefined) return legacy;
}
return undefined;
}
function isPhased(e) {
for (const srv of Object.values(e.servers || {})) {
if (phasedValue(srv, "event_tps", "cold") !== undefined) return true;
}
return false;
}
// --- Emit linetype definitions (server × level) --- // --- Emit linetype definitions (server × level) ---
const plotLines = []; const plotLines = [];
for (let si = 0; si < allServers.length; si++) { for (let si = 0; si < allServers.length; si++) {
@@ -297,7 +309,7 @@ for (const panel of panels) {
plotLines.push(""); plotLines.push("");
} else { } else {
// Three columns per server (empty, warm, hot) // Three columns per server (cold, warm, hot)
const header = ["tag"]; const header = ["tag"];
for (const srv of allServers) { for (const srv of allServers) {
const sl = shortLabel[srv] || srv; const sl = shortLabel[srv] || srv;
@@ -311,7 +323,7 @@ for (const panel of panels) {
const d = e.servers?.[srv]; const d = e.servers?.[srv];
if (!d) { row.push("NaN", "NaN", "NaN"); continue; } if (!d) { row.push("NaN", "NaN", "NaN"); continue; }
if (phased) { if (phased) {
for (const lvl of levels) row.push(d[phasedKey(panel.base, lvl)] ?? "NaN"); for (const lvl of levels) row.push(phasedValue(d, panel.base, lvl) ?? "NaN");
} else { } else {
row.push("NaN", d[panel.base] ?? "NaN", "NaN"); // flat → warm only row.push("NaN", d[panel.base] ?? "NaN", "NaN"); // flat → warm only
} }
@@ -320,7 +332,7 @@ for (const panel of panels) {
} }
fs.writeFileSync(path.join(workDir, panel.file), rows.join("\n") + "\n", "utf8"); fs.writeFileSync(path.join(workDir, panel.file), rows.join("\n") + "\n", "utf8");
// Plot: three series per server (empty/warm/hot) // Plot: three series per server (cold/warm/hot)
const dataFile = `data_dir."/${panel.file}"`; const dataFile = `data_dir."/${panel.file}"`;
plotLines.push(`set title "${panel.label}"`); plotLines.push(`set title "${panel.label}"`);
plotLines.push(`set ylabel "${panel.ylabel}"`); plotLines.push(`set ylabel "${panel.ylabel}"`);
@@ -395,7 +407,7 @@ if (!pg || !mem) {
} }
// Detect phased entries — use hot fill level as headline metric // Detect phased entries — use hot fill level as headline metric
const phased = pg.event_empty_tps !== undefined; const phased = pg.event_cold_tps !== undefined || pg.event_empty_tps !== undefined;
// For phased entries, resolve "event_tps" → "event_hot_tps" etc. // For phased entries, resolve "event_tps" → "event_hot_tps" etc.
function resolveKey(key) { function resolveKey(key) {