File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
content/develop/clients/jedis Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -276,7 +276,7 @@ MultiDbClient client = MultiDbClient.builder()
276276## Health check configuration
277277
278278There are several strategies available for health checks that you can configure using the
279- ` MultiClusterClientConfig ` builder. The sections below explain these strategies
279+ ` MultiDbConfig ` builder. The sections below explain these strategies
280280in more detail.
281281
282282### ` PingStrategy ` (default)
@@ -320,6 +320,16 @@ MultiDbConfig.DatabaseConfig dbConfig =
320320 .build();
321321```
322322
323+ The ` LagAwareStrategy.Config ` builder has the following options:
324+
325+ | Builder method | Default value | Description|
326+ | --- | --- | --- |
327+ | ` sslOptions() ` | ` null ` | Standard SSL options for connecting to the REST API. |
328+ | ` interval() ` | ` 5000 ` | Interval in milliseconds between health checks. |
329+ | ` timeout() ` | ` 3000 ` | Timeout in milliseconds for health check requests. |
330+ | ` extendedCheckEnabled() ` | ` false ` | Enable extended lag checking (this includes lag validation in addition to the standard datapath validation). |
331+ | ` availabilityLagTolerance() ` | ` 100 ` | Maximum lag tolerance in milliseconds for extended lag checking. |
332+
323333### Custom health check strategy
324334
325335You can supply your own custom health check strategy by
You can’t perform that action at this time.
0 commit comments