morhidi opened a new pull request, #273:
URL: https://github.com/apache/flink-kubernetes-operator/pull/273
JOSDK defaults to the following retry configuration (exponential backoff)
```
GenericRetry.defaultLimitedExponentialRetry()
.setInitialInterval(2000)
.setIntervalMultiplier(1.5D)
.setMaxAttempts(5);
```
This PR makes it configurable via the following operator config options:
```
kubernetes.operator.retry.initial.interval: 5 s
kubernetes.operator.retry.interval.multiplier: 2
kubernetes.operator.retry.max.attempts: 10
```
--
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]