Skip to content

Commit 972f259

Browse files
committed
docs changes
1 parent ba5318e commit 972f259

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/using-the-python-driver/UsingThePythonDriver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The AWS Advanced Python Driver has several built-in plugins that are available t
7171
| Aurora Stale DNS Plugin | `stale_dns` | Aurora | Prevents incorrectly opening a new connection to an old writer host when DNS records have not yet updated after a recent failover event. <br><br> :warning:**Note:** Contrary to `failover` plugin, `stale_dns` plugin doesn't implement failover support itself. It helps to eliminate opening wrong connections to an old writer host after cluster failover is completed. <br><br> :warning:**Note:** This logic is already included in `failover` plugin so you can omit using both plugins at the same time. | None |
7272
| [Aurora Connection Tracker Plugin](./using-plugins/UsingTheAuroraConnectionTrackerPlugin.md) | `aurora_connection_tracker` | Aurora | Tracks all the opened connections. In the event of a cluster failover, the plugin will close all the impacted connections to the host. This plugin is enabled by default. | None |
7373
| [Read Write Splitting Plugin](./using-plugins/UsingTheReadWriteSplittingPlugin.md) | `read_write_splitting` | Aurora | Enables read write splitting functionality where users can switch between database reader and writer instances. | None |
74-
| [Fastest Response Strategy Plugin](./using-plugins/UsingTheFastestResponseStrategyPlugin.md) | `fastest_response_strategy` | Any database | A host host selection strategy plugin that uses a host monitoring service to monitor each reader host's response time and chooses the host with the fastest response | None |
74+
| [Fastest Response Strategy Plugin](./using-plugins/UsingTheFastestResponseStrategyPlugin.md) | `fastest_response_strategy` | Aurora | A host host selection strategy plugin that uses a host monitoring service to monitor each reader host's response time and chooses the host with the fastest response | None |
7575

7676
In addition to the built-in plugins, you can also create custom plugins more suitable for your needs.
7777
For more information, see [Custom Plugins](../development-guide/LoadablePlugins.md#using-custom-plugins).

docs/using-the-python-driver/using-plugins/UsingTheFastestResponseStrategyPlugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ conn = AwsWrapperConnection.connect(psycopg.Connection.connect, **params)
2727
## Configuration Parameters
2828
| Parameter | Value | Required | Description | Default Value |
2929
|------------------------------------|:---------:|:--------:|:---------------------------------------------------------------------|---------------|
30-
| `response_measurement_interval_ns` | `Integer` | No | Interval in nanos between measuring response time to a database host | `30000` |
30+
| `response_measurement_interval_ns` | `Integer` | No | Interval in nanos between measuring response time to a database host | `30_000_000_000` |
3131

3232
### Sample Code
3333
[Postgres fastest response strategy sample code](../../examples/PGFastestResponseStrategy.py)

0 commit comments

Comments
 (0)