Skip to content

Commit c3d9a73

Browse files
authored
[Dataflow Streaming] Increase stuck commit invalidation timeout to 1 hour (#39083)
1 parent cedfd0b commit c3d9a73

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

runners/google-cloud-dataflow-java/src/main/java/org/apache/beam/runners/dataflow/options/DataflowStreamingPipelineOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ public interface DataflowStreamingPipelineOptions extends PipelineOptions {
191191
void setMaxStackTraceDepthToReport(int value);
192192

193193
@Description("Necessary duration for a commit to be considered stuck and invalidated.")
194-
@Default.Integer(10 * 60 * 1000)
194+
@Default.Integer(60 * 60 * 1000)
195195
int getStuckCommitDurationMillis();
196196

197197
void setStuckCommitDurationMillis(int value);

0 commit comments

Comments
 (0)