arjun4084346 commented on code in PR #3997: URL: https://github.com/apache/gobblin/pull/3997#discussion_r1672686292
########## gobblin-service/src/main/java/org/apache/gobblin/service/monitoring/KafkaJobStatusMonitor.java: ########## @@ -104,7 +106,8 @@ public abstract class KafkaJobStatusMonitor extends HighLevelConsumer<byte[], by private final StateStore<org.apache.gobblin.configuration.State> stateStore; private final ScheduledExecutorService scheduledExecutorService; private static final Config RETRYER_FALLBACK_CONFIG = ConfigFactory.parseMap(ImmutableMap.of( - RETRY_TIME_OUT_MS, TimeUnit.HOURS.toMillis(24L), // after a day, presume non-transient and give up + // keeping the retry timeout less until we configure retryer to retry only the transient exceptions + RETRY_TIME_OUT_MS, TimeUnit.MINUTES.toMillis(30L), // after 30 minutes, presume non-transient and give up Review Comment: ok, changing to 6 hours. how much time should a transient problem need to get resolved? -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
