Skip to content

Commit 0dd2864

Browse files
adding cluster.no_cluster_manager_block docs (#10803)
* adding cluster.no_cluster_manager_block docs Signed-off-by: Anton Rubin <[email protected]> * adding cluster.no_cluster_manager_block docs Signed-off-by: Anton Rubin <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Anton Rubin <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Nathan Bower <[email protected]>
1 parent d7173f1 commit 0dd2864

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

_install-and-configure/configuring-opensearch/cluster-settings.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,11 @@ OpenSearch supports the following cluster-level shard, block, and task settings:
120120

121121
- `cluster.blocks.read_only_allow_delete` (Boolean): Similar to `cluster.blocks.read_only`, but allows you to delete indexes.
122122

123+
- `cluster.no_cluster_manager_block` (String): Configures the operations that are rejected when no cluster manager is active. Accepts one of the following three option:
124+
- `all`: Blocks all read and write requests to the cluster.
125+
- `write`: Blocks only write requests. Read requests can still be processed.
126+
- `metadata_write`: Metadata-related writes, such as updates to mappings or routing tables, are blocked, but normal document indexing can still be performed. Read and write requests are processed using the cluster state last received by the node. Because the node may be cut off from the rest of the cluster, this can lead to serving outdated information or returning only part of the data.
127+
123128
- `cluster.max_shards_per_node` (Integer): Limits the total number of primary and replica shards for the cluster. The limit is calculated as follows: `cluster.max_shards_per_node` multiplied by the number of non-frozen data nodes. Shards for closed indexes do not count toward this limit. Default is `1000`.
124129

125130
- `cluster.persistent_tasks.allocation.enable` (String): Enables or disables allocation for persistent tasks.

0 commit comments

Comments
 (0)