Skip to content

Commit 2cf06cc

Browse files
authored
increase report interval to 120s to minimize temporal metric reporting (#15280)
1 parent a4a5662 commit 2cf06cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airbyte-workers/src/main/java/io/airbyte/workers/temporal/TemporalUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public class TemporalUtils {
6969
.setInitialInterval(Duration.ofSeconds(configs.getInitialDelayBetweenActivityAttemptsSeconds()))
7070
.setMaximumInterval(Duration.ofSeconds(configs.getMaxDelayBetweenActivityAttemptsSeconds()))
7171
.build();
72-
private static final double REPORT_INTERVAL_SECONDS = 10.0;
72+
private static final double REPORT_INTERVAL_SECONDS = 120.0;
7373

7474
public static WorkflowServiceStubs createTemporalService(final WorkflowServiceStubsOptions options, final String namespace) {
7575
return getTemporalClientWhenConnected(

0 commit comments

Comments
 (0)