Skip to content

Commit

Permalink
Simplify the remote publication description
Browse files Browse the repository at this point in the history
Signed-off-by: Sooraj Sinha <[email protected]>
  • Loading branch information
soosinha committed Jun 12, 2024
1 parent 29d708c commit dd3a2c5
Showing 1 changed file with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,11 @@ The remote cluster state functionality has the following limitations:
- Unsafe bootstrap scripts cannot be run when the remote cluster state is enabled. When a majority of cluster-manager nodes are lost and the cluster goes down, the user needs to replace any remaining cluster manager nodes and reseed the nodes in order to bootstrap a new cluster.

## Remote cluster state publication
Cluster state publication using remote - When it is enabled, the updated cluster state during any updates like creation of an index and
put mappings will be published through remote store, that is, the cluster manager will provide the remote location
and nodes will download the cluster state directly from remote location.
As the cluster state grows over time and there are large number of nodes in the cluster, publishing the state over local transport
tends to add lot of overhead in terms of CPU, memory and transport thread-pool. This will reduce the overhead on cluster manager node
to publish the updated cluster state through remote store to every other node in the cluster instead of local transport.
Remote cluster state publication can be enabled by configuring the experimental remote publication feature.
The cluster manager node processes the updates to cluster state. It then, publishes the updated cluster state
over the local transport layer to all the follower nodes. With remote cluster state enabled,
cluster state is backed to remote store with every state update. The follower nodes can fetch the state
from remote store directly and reducing the overhead on the cluster manager node for publication.
This can be done by enabling the experimental remote publication feature.
Enable the feature flag for `remote_store.publication` feature by following the [experiment feature flag documentation]({{site.url}}{{site.baseurl}}/install-and-configure/configuring-opensearch/experimental/).

The routing table is an object within the cluster state which contains the shard allocation details for each index.
Expand Down

0 comments on commit dd3a2c5

Please sign in to comment.