DongLiang-0 commented on code in PR #67: URL: https://github.com/apache/doris-kafka-connector/pull/67#discussion_r2037040321
########## src/main/java/org/apache/doris/kafka/connector/cfg/DorisSinkConnectorConfig.java: ########## @@ -89,6 +89,12 @@ public class DorisSinkConnectorConfig { public static final String DEBEZIUM_SCHEMA_EVOLUTION_DEFAULT = SchemaEvolutionMode.NONE.getName(); + public static final String MAX_RETRIES = "max.retries"; + public static final int MAX_RETRIES_DEFAULT = 10; + + public static final String RETRY_INTERVAL_MS = "retry.interval.ms"; + public static final int RETRY_INTERVAL_MS_DEFAULT = 3000; Review Comment: Isn't this time a bit short? The total retry time is only 30 seconds. I feel that if FE and BE are restarted in the actual production environment, 30 seconds may not be enough. I feel that the `retry.interval.ms` can be `30000` . -- 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: dev-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@doris.apache.org For additional commands, e-mail: dev-h...@doris.apache.org