Skip to content

Commit cdbc710

Browse files
committed
roachtest: modify probe ranges operation to not run in parallel
We initially set up this operation to run concurrently, but are seeing range errors that seem to be from other operations running at the same time. In order to more usefully rely on this operation, we would like to try running this operation sequentially instead. Fixes: #102034 Release note: None Epic: None <what was there before: Previously, ...> <why it needed to change: This was inadequate because ...> <what you did about it: To address this, this patch ...>
1 parent 152ab3f commit cdbc710

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/cmd/roachtest/operations/probe_ranges.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ func registerProbeRanges(r registry.Registry) {
8888
Owner: registry.OwnerKV, // Contact SRE first, as they own the prober.
8989
Timeout: 30 * time.Minute,
9090
CompatibleClouds: registry.AllClouds,
91-
CanRunConcurrently: registry.OperationCanRunConcurrently,
91+
CanRunConcurrently: registry.OperationCannotRunConcurrently,
9292
Dependencies: []registry.OperationDependency{registry.OperationRequiresPopulatedDatabase, registry.OperationRequiresZeroUnavailableRanges},
9393
Run: func(ctx context.Context, o operation.Operation, c cluster.Cluster) registry.OperationCleanup {
9494
return runProbeRanges(ctx, o, c, false)
@@ -99,7 +99,7 @@ func registerProbeRanges(r registry.Registry) {
9999
Owner: registry.OwnerKV, // Contact SRE first, as they own the prober.
100100
Timeout: 30 * time.Minute,
101101
CompatibleClouds: registry.AllClouds,
102-
CanRunConcurrently: registry.OperationCanRunConcurrently,
102+
CanRunConcurrently: registry.OperationCannotRunConcurrently,
103103
Dependencies: []registry.OperationDependency{registry.OperationRequiresPopulatedDatabase, registry.OperationRequiresZeroUnavailableRanges},
104104
Run: func(ctx context.Context, o operation.Operation, c cluster.Cluster) registry.OperationCleanup {
105105
return runProbeRanges(ctx, o, c, true)

0 commit comments

Comments
 (0)