Cluster Blocks Read Only
A cluster-wide read-only block is enabled, so indexing and updates are rejected everywhere. New and updated documents cannot be stored until the block is cleared.
For a complete list of insights, refer to AutoOps insights.
| Field | Value |
|---|---|
| Component | Elasticsearch |
| Severity | High |
| Scope | Cluster |
| Domains | cluster-health |
The following is an example of what you might see when this insight is triggered. Real insights use live data and links from your deployment or cluster.
No description available.
AutoOps shows different recommendations depending on how their conditions match your deployment or cluster.
Clear cluster read-only block
Condition: Shown when enough disk space.
Clear the cluster read-only block so indexing can resume. Use the action below, or set cluster.blocks.read_only to null in cluster settings.
PUT _cluster/settings
{
"transient": {
"cluster.blocks.read_only": null
},
"persistent": {
"cluster.blocks.read_only": null
}
}
Requires the manage cluster privilege. Requires Elasticsearch 8.0.0 or later. This action changes cluster or index configuration.
Free disk before clearing read-only block
Condition: Shown when not enough disk space.
The cluster hit the low disk watermark. Increase disk space or delete old indices before you clear the read-only block. Deleting indices is permanent; confirm backups first.
Impact: When this setting is set to true, indexing is blocked and this will prohibit your cluster from storing new data. The 'cluster.blocks.read_only' setting is currently set to true on your cluster. This means that indexing is blocked and only read operations are available. This block is usually added manually by an operator to prevent indexing to the cluster for maintenance reasons.