| RetryOptions {influxdbclient} | R Documentation |
RetryOptions
Description
Retry options may be specified as optional argument to write.
Format
An R6Class object
Public fields
retryJitterMaximum number of random milliseconds included in delay. Default is
0.retryIntervalFirst retry delay in seconds. Default is
5.maxDelayMaximum delay between retries in seconds. Default is
125.maxRetryTimeMaximum time to spend retrying in seconds. Default is
180.maxAttemptsNumber of retry attempts. Default is
5.exponentialBaseBase for exponential backoff strategy. Default is
2.
Methods
Public methods
Method new()
Creates instance of RetryOptions.
Usage
RetryOptions$new( retryJitter = 0, retryInterval = 5, maxDelay = 125, maxRetryTime = 180, maxAttempts = 5, exponentialBase = 2, ... )
Method clone()
The objects of this class are cloneable with this method.
Usage
RetryOptions$clone(deep = FALSE)
Arguments
deepWhether to make a deep clone.
[Package influxdbclient version 0.1.2 Index]