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: CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
## 1.10.0 [unreleased]
2
2
3
3
### Features
4
+
1.[#140](https://github.com/influxdata/influxdb-client-python/pull/140): Added exponential backoff strategy for batching writes, Allowed to configure default retry strategy. Default value for `retry_interval` is 5_000 milliseconds.
4
5
1.[#136](https://github.com/influxdata/influxdb-client-python/pull/136): Allows users to skip of verifying SSL certificate
5
6
1.[#143](https://github.com/influxdata/influxdb-client-python/pull/143): Skip of verifying SSL certificate could be configured via config file or environment properties
6
7
1.[#141](https://github.com/influxdata/influxdb-client-python/pull/141): Added possibility to use datetime nanoseconds precision by `pandas.Timestamp`
@@ -899,6 +911,23 @@ The following forward compatible APIs are available:
899
911
900
912
For detail info see `InfluxDB 1.8 example <examples/influxdb_18_example.py>`_.
901
913
914
+
HTTP Retry Strategy
915
+
^^^^^^^^^^^^^^^^^^^
916
+
By default the client uses a retry strategy only for batching writes (for more info see `Batching`_).
917
+
For other HTTP requests there is no one retry strategy, but it could be configured by ``retries``
918
+
parameter of ``InfluxDBClient``.
919
+
920
+
For more info about how configure HTTP retry see details in `urllib3 documentation <https://urllib3.readthedocs.io/en/latest/reference/index.html?highlight=retry#urllib3.Retry>`_.
0 commit comments