Skip to content

Commit

Permalink
changefeedccl: increase chaos roachtest latency limits
Browse files Browse the repository at this point in the history
Resolves: #93238

Since our job-level retry MaxBackoff has increased from 10 seconds to 10
minutes, increase the chaos test latency limits.

Release note: None
  • Loading branch information
samiskin committed Dec 13, 2022
1 parent 4b810d9 commit 98d81c4
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pkg/cmd/roachtest/tests/cdc.go
Original file line number Diff line number Diff line change
Expand Up @@ -987,8 +987,9 @@ func registerCDC(r registry.Registry) {
opts: map[string]string{"initial_scan": "'no'"},
})
ct.runFeedLatencyVerifier(feed, latencyTargets{
initialScanLatency: 3 * time.Minute,
steadyLatency: 5 * time.Minute,
// Higher latencies are permitted due to retry backoff
initialScanLatency: 10 * time.Minute,
steadyLatency: 30 * time.Minute,
})
ct.waitForWorkload()
},
Expand All @@ -1013,8 +1014,9 @@ func registerCDC(r registry.Registry) {
tolerateErrors: true,
})
ct.runFeedLatencyVerifier(feed, latencyTargets{
initialScanLatency: 3 * time.Minute,
steadyLatency: 5 * time.Minute,
// Higher latencies are permitted due to retry backoff
initialScanLatency: 5 * time.Minute,
steadyLatency: 10 * time.Minute,
})
ct.waitForWorkload()
},
Expand Down

0 comments on commit 98d81c4

Please sign in to comment.