Skip to content

Commit 9d533cc

Browse files
DOC-5992 links to concepts page
1 parent 8f9a465 commit 9d533cc

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

content/develop/clients/jedis/failover.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,9 @@ poolConfig.setTestWhileIdle(true);
9494
poolConfig.setTimeBetweenEvictionRuns(Duration.ofSeconds(1));
9595
```
9696

97-
Supply the weighted list of endpoints using the `MultiDbConfig` builder.
97+
Supply the weighted list of endpoints using the `MultiDbConfig` builder
98+
(see [Selecting a failover target]({{< relref "/develop/clients/failover#selecting-a-failover-target" >}}) for a full description of how
99+
the weighted list is used).
98100
Use the `weight` option to order the endpoints, with the highest
99101
weight being tried first.
100102

@@ -147,7 +149,8 @@ but will also handle the connection management and failover transparently.
147149
### Circuit breaker configuration
148150

149151
The `MultiDbConfig.CircuitBreakerConfig` builder lets you pass several options to configure
150-
the circuit breaker:
152+
the circuit breaker (see [Detecting connection problems]({{< relref "/develop/clients/failover#detecting-connection-problems" >}}) for more information on how the
153+
circuit breaker works):
151154

152155
| Builder method | Default value | Description|
153156
| --- | --- | --- |

content/develop/clients/redis-py/failover.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ The example below shows a simple case with a list of two servers,
3737
target. If `redis-east` fails, redis-py should fail over to
3838
`redis-west`.
3939

40-
Supply the weighted endpoints using a list of `DatabaseConfig` objects.
40+
Supply the weighted endpoints using a list of `DatabaseConfig` objects
41+
(see [Selecting a failover target]({{< relref "/develop/clients/failover#selecting-a-failover-target" >}}) for a full description of how
42+
the weighted list is used).
4143
Use the `weight` option to order the endpoints, with the highest
4244
weight being tried first. Then, use the list to create a `MultiDbConfig` object,
4345
which you can pass to the `MultiDBClient` constructor to create the client.
@@ -94,7 +96,9 @@ cfg = MultiDbConfig(
9496

9597
### Circuit breaker configuration
9698

97-
`MultiDbConfig` gives you several options to configure the circuit breaker:
99+
`MultiDbConfig` gives you several options to configure the circuit breaker
100+
(see [Detecting connection problems]({{< relref "/develop/clients/failover#detecting-connection-problems" >}}) for more information on how the
101+
circuit breaker works):
98102

99103
| Option | Description |
100104
| --- | --- |

0 commit comments

Comments
 (0)