Uses of Class
org.influxdb.BatchOptions
Package | Description |
---|---|
org.influxdb | |
org.influxdb.impl |
-
Uses of BatchOptions in org.influxdb
Fields in org.influxdb declared as BatchOptions Modifier and Type Field Description static BatchOptions
BatchOptions. DEFAULTS
Default batch options.Methods in org.influxdb that return BatchOptions Modifier and Type Method Description BatchOptions
BatchOptions. actions(int actions)
BatchOptions
BatchOptions. bufferLimit(int bufferLimit)
The client maintains a buffer for failed writes so that the writes will be retried later on.BatchOptions
BatchOptions. consistency(InfluxDB.ConsistencyLevel consistency)
BatchOptions
BatchOptions. dropActionsOnQueueExhaustion(boolean dropActionsOnQueueExhaustion)
Set to define the behaviour when the action queue exhausts.BatchOptions
BatchOptions. droppedActionHandler(Consumer<Point> droppedActionHandler)
Handler to handle dropped actions due to queue actions.BatchOptions
BatchOptions. exceptionHandler(BiConsumer<Iterable<Point>,Throwable> exceptionHandler)
BatchOptions
BatchOptions. flushDuration(int flushDuration)
BatchOptions
BatchOptions. jitterDuration(int jitterDuration)
Jitters the batch flush interval by a random amount.BatchOptions
BatchOptions. precision(TimeUnit precision)
Set the time precision to use for the whole batch.BatchOptions
BatchOptions. threadFactory(ThreadFactory threadFactory)
Methods in org.influxdb with parameters of type BatchOptions Modifier and Type Method Description InfluxDB
InfluxDB. enableBatch(BatchOptions batchOptions)
Enable batching of single Point writes to speed up writes significantly. -
Uses of BatchOptions in org.influxdb.impl
Methods in org.influxdb.impl with parameters of type BatchOptions Modifier and Type Method Description InfluxDB
InfluxDBImpl. enableBatch(BatchOptions batchOptions)