Skip to content

Commit 3f2b8b3

Browse files
committed
Python Geo Replication
1 parent ebe8884 commit 3f2b8b3

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

articles/azure-app-configuration/howto-geo-replication.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,18 @@ spec:
147147
> [!NOTE]
148148
> The automatic replica discovery and failover support is available if you use version **1.3.0** or later of [Azure App Configuration Kubernetes Provider](./quickstart-azure-kubernetes-service.md).
149149
150+
### [Python](#tab/python)
151+
152+
Specify the `replica_discovery_enabled` property when loading the configuration store and set it to `False`.
153+
154+
155+
```python
156+
config = load(endpoint, credential, replica_discovery_enabled=False)
157+
```
158+
159+
> [!NOTE]
160+
> The automatic replica discovery support is available if you use version **1.3.0** or later.
161+
150162
---
151163

152164
## Scale and failover with replicas
@@ -229,6 +241,10 @@ spring.cloud.azure.appconfiguration.stores[0].connection-strings[1]="${SECOND_RE
229241

230242
The Azure App Configuration Kubernetes Provider supports failover with automatically discovered replicas by default, as long as automatic replica discovery is not disabled. It does not support or require user-provided replicas.
231243

244+
### [Python](#tab/python)
245+
246+
The Azure App Configuration Python Provider supports failover with automatically discovered replicas by default, as long as automatic replica discovery is not disabled. It does not support or require user-provided replicas.
247+
232248
---
233249

234250
The failover may occur if the App Configuration provider observes the following conditions.
@@ -272,6 +288,10 @@ This feature is not yet supported in the Azure App Configuration Java Spring Pro
272288

273289
This feature is not yet supported in the Azure App Configuration Kubernetes Provider.
274290

291+
### [Python](#tab/python)
292+
293+
This feature is not yet supported in the Azure App Configuration Python Provider.
294+
275295
---
276296

277297
## Next steps

0 commit comments

Comments
 (0)