- Retry (faulttolerance) Configuration
Type: io.helidon.faulttolerance.Retry
This is a standalone configuration type, prefix from configuration root:
fault-tolerance.retries
Configuration options
| key | type | default value | description |
|---|---|---|---|
calls | int | 3 | Number of calls (first try + retries). |
delay | Duration | PT0.2S | Base delay between try and retry. Defaults to |
delay-factor | double | -1.0 | Delay retry policy factor. If unspecified (value of Default when Retry.DelayingRetryPolicy is used is |
enable-metrics | boolean | false | Flag to enable metrics for this instance. The value of this flag is combined with the global config entry io.helidon.faulttolerance.FaultTolerance.FT_METRICS_DEFAULT_ENABLED. If either of these flags is |
jitter | Duration | PT-1S | Jitter for Retry.JitterRetryPolicy. If unspecified (value of |
overall-timeout | Duration | PT1S | Overall timeout of all retries combined. |