cluster_block_exception [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block] in Magento 2

March 30, 2024 0 Comments

This is custom heading element

cluster_block_exception [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block] in Magento 2

Steps to Solve ‘cluster_block_exception’ in Magento 2

To resolve the “disk usage exceeded flood-stage watermark” error during reindexing in Magento 2 by disabling the cluster routing allocation disk threshold, you can follow these steps:

Step 1: Run the following command in the root path of Magento 2:

curl -XPUT -H “Content-Type: application/json” http://localhost:9200/_cluster/settings -d ‘{ “transient”: { “cluster.routing.allocation.disk.threshold_enabled”: false } }’

Step 2: Try to perform reindexing again using the following command:

curl -XPUT -H “Content-Type: application/json” http://localhost:9200/_all/_settings -d ‘{“index.blocks.read_only_allow_delete”: null}’

Leave A Comment

To Top