Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add remote state publication #7364
Add remote state publication #7364
Changes from 1 commit
7d42c3d
29d708c
1dc9947
4eb8b3f
cb2898f
b15081a
09a0495
6cf2f3f
e136c2c
376930f
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
Check failure on line 60 in _tuning-your-cluster/availability-and-recovery/remote-store/remote-cluster-state.md
GitHub Actions / style-job
Check failure on line 68 in _tuning-your-cluster/availability-and-recovery/remote-store/remote-cluster-state.md
GitHub Actions / style-job
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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. This doesn't change the publication flow and follower nodes will not send acknowledgement back to cluster manager until they download the updated cluster state from remote store and proceed as expected in current flow. Please note enabling remote cluster state is mandatory for remote publication to work.Also, RoutingTable which contains the shard allocation details for each index in the cluster state requires setting up the remote blobstore repository. It can be configured as below:
Check warning on line 79 in _tuning-your-cluster/availability-and-recovery/remote-store/remote-cluster-state.md
GitHub Actions / style-job
Check warning on line 91 in _tuning-your-cluster/availability-and-recovery/remote-store/remote-cluster-state.md
GitHub Actions / style-job
Check failure on line 97 in _tuning-your-cluster/availability-and-recovery/remote-store/remote-cluster-state.md
GitHub Actions / style-job