Skip to content

Commit

Permalink
[Enhancement] Increase default sink.connect.timeout-ms to to tolerate…
Browse files Browse the repository at this point in the history
… jitter (#269)

Signed-off-by: PengFei Li <[email protected]>
  • Loading branch information
banmoy authored Nov 10, 2023
1 parent 30903db commit bfa8c97
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public enum StreamLoadFormat {
public static final ConfigOption<String> SINK_LABEL_PREFIX = ConfigOptions.key("sink.label-prefix")
.stringType().noDefaultValue().withDescription("The prefix of the stream load label. Available values are within [-_A-Za-z0-9]");
public static final ConfigOption<Integer> SINK_CONNECT_TIMEOUT = ConfigOptions.key("sink.connect.timeout-ms")
.intType().defaultValue(1000).withDescription("Timeout in millisecond for connecting to the `load-url`.");
.intType().defaultValue(30000).withDescription("Timeout in millisecond for connecting to the `load-url`.");
public static final ConfigOption<Integer> SINK_WAIT_FOR_CONTINUE_TIMEOUT = ConfigOptions.key("sink.wait-for-continue.timeout-ms")
.intType().defaultValue(30000).withDescription("Timeout in millisecond to wait for 100-continue response for http client.");
public static final ConfigOption<Integer> SINK_IO_THREAD_COUNT = ConfigOptions.key("sink.io.thread-count")
Expand Down

0 comments on commit bfa8c97

Please sign in to comment.