gguptp commented on code in PR #151: URL: https://github.com/apache/flink-connector-aws/pull/151#discussion_r1698478044
########## flink-connector-aws/flink-connector-dynamodb/src/main/java/org/apache/flink/connector/dynamodb/source/config/DynamodbStreamsSourceConfigConstants.java: ########## @@ -43,6 +45,15 @@ public enum InitialPosition { .defaultValue(10000L) .withDescription("The interval between each attempt to discover new shards."); + public static final ConfigOption<Integer> DESCRIBE_STREAM_INCONSISTENCY_RESOLUTION_RETRY_COUNT = + ConfigOptions.key("flink.describestream.inconsistencyresolution.retries") + .intType() + .defaultValue(5) + .withDescription( + "The number of times to retry build shard lineage if describestream returns inconsistent response"); + + public static final Duration MIN_DDB_STREAMS_SHARD_RETENTION = Duration.ofHours(6); Review Comment: Nope, this shouldn't be defined via config -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org