diff --git a/_replication-plugin/get-started.md b/_replication-plugin/get-started.md index 00576fa4..34e2899a 100644 --- a/_replication-plugin/get-started.md +++ b/_replication-plugin/get-started.md @@ -6,7 +6,7 @@ nav_order: 10 # Get started with cross-cluster replication -With cross-cluster replication, you index data to a leader index and that data is replicated to one or more read-only follower indices. All subsequnt operations on the leader are replicated on the follower, such as creating, updating, or deleting documents. +With cross-cluster replication, you index data to a leader index and that data is replicated to one or more read-only follower indices. All subsequent operations on the leader are replicated on the follower, such as creating, updating, or deleting documents. ## Prerequisites @@ -147,7 +147,7 @@ To get started, create an index called `leader-01` on the remote (leader) cluste curl -XPUT -k -H 'Content-Type: application/json' -u 'admin:admin' 'https://localhost:9201/leader-01?pretty' ``` -Start replication of that index from the follower cluster. Starting replication creates the provided follower index from scratch; you can't convert an existing index to a follower index. +Start replication of that index from the follower cluster. Starting replication creates a follower index from scratch; you can't convert an existing index to a follower index. Provide the leader cluster and index that you want to replicate: diff --git a/_replication-plugin/index.md b/_replication-plugin/index.md index 1b9414f2..07ba256f 100644 --- a/_replication-plugin/index.md +++ b/_replication-plugin/index.md @@ -10,7 +10,7 @@ has_children: false The cross-cluster replication plugin lets you replicate indices, mappings, and metadata from one OpenSearch cluster to another. It follows an active-passive replication model where the follower index (where the data is replicated) pulls data from the leader (source) index. -The replication plugin supports replication of indices using wildcard pattern matching and provides commands to pause, resume, and stop replication. Once replication starts on an index, it initiates a persistent background task on the primary shard of the follower cluster that continuously polls corresponding shards from the leader cluster for updates. +The replication plugin supports replication of indices using wildcard pattern matching and provides commands to pause, resume, and stop replication. Once replication starts on an index, it initiates a persistent background task on the primary shard on the follower cluster that continuously polls corresponding shards from the leader cluster for updates. The replication plugin integrates with the security plugin so you can encrypt cross-cluster traffic with node-to-node encryption and control access to replication activities.