File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Filter options
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Original file line number Diff line number Diff line change @@ -427,7 +427,7 @@ The batching is configurable by ``write_options``\ :
427
427
- Description
428
428
- Default Value
429
429
* - **batch_size **
430
- - the number of data pointx to collect in a batch
430
+ - the number of data point to collect in a batch
431
431
- ``1000 ``
432
432
* - **flush_interval **
433
433
- the number of milliseconds before the batch is written
Original file line number Diff line number Diff line change @@ -57,10 +57,11 @@ def __init__(self, write_type: WriteType = WriteType.batching,
57
57
58
58
:param write_type: methods of write (batching, asynchronous, synchronous)
59
59
:param batch_size: the number of data point to collect in batch
60
- :param flush_interval: flush data at least in this interval
60
+ :param flush_interval: flush data at least in this interval (milliseconds)
61
61
:param jitter_interval: this is primarily to avoid large write spikes for users running a large number of
62
- client instances ie, a jitter of 5s and flush duration 10s means flushes will happen every 10-15s.
63
- :param retry_interval: the time to wait before retry unsuccessful write
62
+ client instances ie, a jitter of 5s and flush duration 10s means flushes will happen every 10-15s
63
+ (milliseconds)
64
+ :param retry_interval: the time to wait before retry unsuccessful write (milliseconds)
64
65
:param max_retries: the number of max retries when write fails, 0 means retry is disabled
65
66
:param max_retry_delay: the maximum delay between each retry attempt in milliseconds
66
67
:param max_retry_time: total timeout for all retry attempts in milliseconds, if 0 retry is disabled
You can’t perform that action at this time.
0 commit comments