Skip to content

Commit 3d53e41

Browse files
committed
roachtest: increase backupRestoreRoundTrip split_queue verbosity
We have seen cases where splits seems to be slow. Especially when running with very small ranges. Thic commit increases the verbosity of the split_queue hoping to find out what is happening when the splits are being slow. Fixes: #148638 Release Note: None
1 parent dde85f8 commit 3d53e41

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pkg/cmd/roachtest/tests/backup_restore_roundtrip.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,9 @@ func backupRestoreRoundTrip(
130130
"COCKROACH_MIN_RANGE_MAX_BYTES=1",
131131
})
132132

133-
c.Start(ctx, t.L(), roachtestutil.MaybeUseMemoryBudget(t, 50), install.MakeClusterSettings(envOption), c.CRDBNodes())
133+
startOpts := roachtestutil.MaybeUseMemoryBudget(t, 50)
134+
startOpts.RoachprodOpts.ExtraArgs = []string{"--vmodule=split_queue=3"}
135+
c.Start(ctx, t.L(), startOpts, install.MakeClusterSettings(envOption), c.CRDBNodes())
134136
m := c.NewDeprecatedMonitor(ctx, c.CRDBNodes())
135137

136138
m.Go(func(ctx context.Context) error {

0 commit comments

Comments
 (0)