Few more I missed
Signed-off-by: Liz Snyder <elizabsn@amazon.com>
This commit is contained in:
parent
1e198c0da9
commit
f1e3686e81
|
@ -52,7 +52,7 @@ plugins.security.nodes_dn:
|
||||||
```
|
```
|
||||||
## Example setup
|
## Example setup
|
||||||
|
|
||||||
Save this sample file as `docker-compose.yml` and run `docker-compose up` to start two single-node clusters on the same network:
|
To start two single-node clusters on the same network, save this sample file as `docker-compose.yml` and run `docker-compose up`:
|
||||||
|
|
||||||
```yml
|
```yml
|
||||||
version: '3'
|
version: '3'
|
||||||
|
|
|
@ -10,8 +10,8 @@ redirect_from:
|
||||||
# Cross-cluster replication
|
# Cross-cluster replication
|
||||||
|
|
||||||
The cross-cluster replication plugin lets you replicate indexes, mappings, and metadata from one OpenSearch cluster to another. Cross-cluster replication has the following benefits:
|
The cross-cluster replication plugin lets you replicate indexes, mappings, and metadata from one OpenSearch cluster to another. Cross-cluster replication has the following benefits:
|
||||||
- By replicating your indexes, you ensure that you can continue to handle search requests in the event of an outage.
|
- By replicating your indexes, you ensure that you can continue to handle search requests if there's an outage.
|
||||||
- Replicating data across geographically distant data centers minimizes the distance between the data and the application server, reducing expensive latencies.
|
- Replicating data across geographically distant data centers minimizes the distance between the data and the application server. This reduces expensive latencies.
|
||||||
- You can replicate data from multiple smaller clusters to a centralized reporting cluster, which is useful when it's inefficient to query across a large network.
|
- You can replicate data from multiple smaller clusters to a centralized reporting cluster, which is useful when it's inefficient to query across a large network.
|
||||||
|
|
||||||
Replication follows an active-passive model where the follower index (where the data is replicated) pulls data from the leader (remote) index.
|
Replication follows an active-passive model where the follower index (where the data is replicated) pulls data from the leader (remote) index.
|
||||||
|
|
Loading…
Reference in New Issue