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: articles/cosmos-db/quickstart-vector-store-nodejs.md
+40-3Lines changed: 40 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ ms.author: diberry
7
7
ms.reviewer: jcodella
8
8
ms.devlang: typescript
9
9
ms.service: azure-cosmos-db
10
+
ms.subservice: nosql
10
11
ms.topic: quickstart-sdk
11
12
ms.date: 02/11/2026
12
13
ai-usage: ai-assisted
@@ -58,11 +59,35 @@ Find the sample code with resource provisioning on [GitHub](https://github.com/A
58
59
59
60
1. Create a new data directory for the hotels data file:
60
61
62
+
### [Linux/macOS](#tab/tab-data-linux)
63
+
61
64
```bash
62
65
mkdir data
63
66
```
64
67
65
-
1. Copy the [raw data file with vectors](https://raw.githubusercontent.com/Azure-Samples/cosmos-db-vector-samples/refs/heads/main/data/HotelsData_toCosmosDB_Vector.json) to your `data` directory.
68
+
### [Windows](#tab/tab-data-windows)
69
+
70
+
```powershell
71
+
New-Item -ItemType Directory -Force -Path data
72
+
```
73
+
74
+
---
75
+
76
+
1. Download the [raw data file with vectors](https://raw.githubusercontent.com/Azure-Samples/cosmos-db-vector-samples/refs/heads/main/data/HotelsData_toCosmosDB_Vector.json) to your `data` directory:
Copy file name to clipboardExpand all lines: articles/postgresql/read-replica/concepts-read-replicas.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: This article describes the read replica feature usage for an Azure
4
4
author: gkasar
5
5
ms.author: gkasar
6
6
ms.reviewer: maghan
7
-
ms.date: 07/16/2025
7
+
ms.date: 04/6/2026
8
8
ms.service: azure-database-postgresql
9
9
ms.subservice: replication
10
10
ms.topic: how-to
@@ -85,20 +85,20 @@ Certain functionalities are restricted to primary servers and can't be set up on
85
85
86
86
If your source Azure Database for PostgreSQL flexible server instance is encrypted with customer-managed keys, see the [documentation](../security/security-data-encryption.md) for other considerations.
87
87
88
-
## Create cascading read replicas (Preview)
88
+
## Create cascading read replicas
89
89
90
-
Cascading read replicas can help distribute read workloads, reducing the load on the primary server. Deploying read replicas in different regions (cross-region read replicas) can help distribute read traffic closer to users in various geographies. You can add cascading read replicas to Azure Database for PostgreSQL flexible server instance, this feature is supported in public preview capacity. This allows you to create new read replicas on top of an existing read replica, with the existing read replica acting as the source for the next level.
90
+
Cascading read replicas can help distribute read workloads, reducing the load on the primary server. Deploying read replicas in different regions (cross-region read replicas) can help distribute read traffic closer to users in various geographies. You can add cascading read replicas to Azure Database for PostgreSQL server. This allows you to create new read replicas on top of an existing read replica, with the existing read replica acting as the source for the next level.
91
91
92
92
The first-level read replica asynchronously replicates data from the primary server. A second-level read replica can then be created using the first-level replica as its source, forming a two-tier replication hierarchy. This architecture increases scalability, supporting up to 30 read replica servers with the primary server allowing up to 5 read replicas, and each of those replicas supporting 5 additional replicas. To add a cascading read replica to Azure Database for PostgreSQL flexible server instance, select the existing read replica (created from the primary server), and navigate to the 'Replication' tab and click 'Create replica'.
93
93
94
94
For example, your primary server can have up to 5 read replicas (level 1). One of these, say read-replica-1, can act as the source for another replica read-replica-2 which becomes part of (level 2).
95
95
96
-
#### Preview considerations:
96
+
#### Key considerations:
97
97
1. Up to 5 read replicas can be created per source read replica, with support for 2 levels of replication.
98
-
2.Promote operation is not supported for intermediate read replicas with cascading read replicas.
99
-
3.Virtual endpoints are not supported for cascading replicas.
100
-
4.Cascading read replicas are supported on intermediate replicas with PostgreSQL version 14 and above.
101
-
5.This feature is supported in: West US, Spain Central, Australia East, South Central US, UK West, Poland Central, Italy North, West US 2, East US 2, East Asia and Canada Central.
98
+
2.Switchover operation is supported between intermediate read replica (source) and cascading read replica.
99
+
3.Promote to primary operation is not supported for intermediate read replicas with cascading read replicas.
100
+
4.Virtual endpoints are not supported for cascading replicas.
101
+
5.Cascading read replicas are supported on intermediate replicas with PostgreSQL version 14 and above.
0 commit comments