Details
-
Sub-task
-
Status: Open
-
Major
-
Resolution: Unresolved
-
None
-
None
Description
Currently CollectResultFetcher use a fixed retry interval.
private void sleepBeforeRetry() { if (retryMillis <= 0) { return; } try { // TODO a more proper retry strategy? Thread.sleep(retryMillis); } catch (InterruptedException e) { LOG.warn("Interrupted when sleeping before a retry", e); } }
This can be improved with a RetryStrategy.
Attachments
Issue Links
- is blocked by
-
FLINK-33702 Add IncrementalDelayRetryStrategy implementation of RetryStrategy
- Resolved
- is related to
-
FLINK-33698 Fix the backoff time calculation in ExponentialBackoffDelayRetryStrategy
- Closed
- links to