public static interface WriteApi.RetryOptions
| Modifier and Type | Method and Description |
|---|---|
int |
getExponentialBase()
The base for the exponential retry delay.
|
int |
getJitterInterval()
Jitters the batch flush interval by a random amount.
|
int |
getMaxRetries()
The number of max retries when write fails.
|
int |
getMaxRetryDelay()
The maximum delay between each retry attempt in milliseconds.
|
int |
getRetryInterval()
The retry interval is used when the InfluxDB server does not specify "Retry-After" header.
|
int getJitterInterval()
int getRetryInterval()
int getMaxRetries()
int getMaxRetryDelay()
int getExponentialBase()
The next delay is computed as: retryInterval * exponentialBase^(attempts-1) + random(jitterInterval)
Copyright © 2018–2023 InfluxData, Inc.. All rights reserved.