Skip to content

Commit ff8cc3f

Browse files
craig[bot]aerfrei
andcommitted
Merge #152414
152414: changefeedccl: fix roachtest using too much memory r=KeithCh a=aerfrei 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 Co-authored-by: Aerin Freilich <[email protected]>
2 parents 9bee340 + c2fc42c commit ff8cc3f

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)