JNSimba commented on code in PR #67: URL: https://github.com/apache/doris-kafka-connector/pull/67#discussion_r2037090722
########## 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: Yes, if it is a be fe restart scenario, it may take longer and needs to be configured longer. But for some other errors, users may need to be aware of them faster, such as data quality errors, maybe 3 minutes is too long? -- 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