You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+4
Original file line number
Diff line number
Diff line change
@@ -447,6 +447,9 @@ The batching is configurable by ``write_options``\ :
447
447
* - **max_retry_delay**
448
448
- the maximum delay between each retry attempt in milliseconds
449
449
- ``125_000``
450
+
* - **max_close_wait**
451
+
- the maximum amount of time to wait for batches to flush when `.close()` is called
452
+
- ``300_000``
450
453
* - **exponential_base**
451
454
- the base for the exponential retry delay, the next delay is computed using random exponential backoff as a random value within the interval ``retry_interval * exponential_base^(attempts-1)`` and ``retry_interval * exponential_base^(attempts)``. Example for ``retry_interval=5_000, exponential_base=2, max_retry_delay=125_000, total=5`` Retry delays are random distributed values within the ranges of ``[5_000-10_000, 10_000-20_000, 20_000-40_000, 40_000-80_000, 80_000-125_000]``
452
455
- ``2``
@@ -470,6 +473,7 @@ The batching is configurable by ``write_options``\ :
0 commit comments