From 3773546bf46d7ba82c3ddfd7b08320cf55caa9b6 Mon Sep 17 00:00:00 2001 From: Jayant Shrivastava Date: Tue, 21 Feb 2023 11:22:47 -0500 Subject: [PATCH] roachtest/cdc: increase cloud storage assume role acceptable latency Previously, we would observe failures due to the latency jumping to ~1m15s. - https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/8757437 - https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/8534805 The most likely explanation for this is network blips. Previously, the maximum acceptable latency was 1 minute. This change bumps it to 90 seconds to reduce how often we see flakes. Fixes: https://github.com/cockroachdb/cockroach/issues/96330 Epic: none Release note: None --- pkg/cmd/roachtest/tests/cdc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/roachtest/tests/cdc.go b/pkg/cmd/roachtest/tests/cdc.go index 3034b6aeec27..6ea9869a6cfc 100644 --- a/pkg/cmd/roachtest/tests/cdc.go +++ b/pkg/cmd/roachtest/tests/cdc.go @@ -1175,7 +1175,7 @@ func registerCDC(r registry.Registry) { }) ct.runFeedLatencyVerifier(feed, latencyTargets{ initialScanLatency: 30 * time.Minute, - steadyLatency: time.Minute, + steadyLatency: 90 * time.Second, }) ct.waitForWorkload() },