Skip to content

Commit e534019

Browse files
committed
chore: increase PROCESS_JOBS default to 50k
1 parent 6f8b821 commit e534019

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/bench-valkey.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ on:
6363
type: string
6464
process_jobs:
6565
description: "Jobs for processing tests"
66-
default: "10000"
66+
default: "50000"
6767
type: string
6868
run_io_threads:
6969
description: "Also run io-threads=4 benchmark"

bench.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* Environment:
2323
* RUNS=5 Number of runs per test (default: 5)
2424
* BULK_JOBS=50000 Jobs for bulk insert test
25-
* PROCESS_JOBS=10000 Jobs for processing tests
25+
* PROCESS_JOBS=50000 Jobs for processing tests
2626
*/
2727

2828
import { Queue, Worker } from "bullmq";
@@ -39,7 +39,7 @@ const TARGETS = [
3939

4040
const RUNS = parseInt(process.env.RUNS ?? "5", 10);
4141
const BULK_JOBS = parseInt(process.env.BULK_JOBS ?? "50000", 10);
42-
const PROCESS_JOBS = parseInt(process.env.PROCESS_JOBS ?? "10000", 10);
42+
const PROCESS_JOBS = parseInt(process.env.PROCESS_JOBS ?? "50000", 10);
4343

4444
// ── Helpers ──────────────────────────────────────────────────────────
4545

0 commit comments

Comments
 (0)