Skip to content

Commit c2fc42c

Browse files
committed
changefeedccl: fix roachtest using too much memory
This roachtest would fail on workload initialization with an error like: ```Error: importing fixture: importing table <table_name>: pq: not enough memory available ...``` We decrease the number of rows per table to decrease memory usage since it should not effect the effectiveness of the test. Epic: none Fixes: #151009 Release note: None
1 parent f8a09a5 commit c2fc42c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cmd/roachtest/tests/cdc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2907,7 +2907,7 @@ func registerCDC(r registry.Registry) {
29072907
Run: func(ctx context.Context, t test.Test, c cluster.Cluster) {
29082908
params := multiTablePTSBenchmarkParams{
29092909
numTables: 500,
2910-
numRows: 10_000,
2910+
numRows: 100,
29112911
duration: "20m",
29122912
}
29132913
runCDCMultiTablePTSBenchmark(ctx, t, c, params)

0 commit comments

Comments
 (0)