I have installed an elastic search(7.x) with Magento2.4 and I am using PHP 7.3 When I run the reindex command(bin/magento indexer:reindex
) getting the following error.
Catalog Search index process unknown error: {"error":{"root_cause":[{"type":"cluster_block_exception","reason":"index [magento2_product_1_v1] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];"}],"type":"cluster_block_exception","reason":"index [magento2_product_1_v1] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];"},"status":429}
If anyone resolved this issue? Please let me know.
Thanks.
disk usage exceeded flood-stage watermark, index has read-only-allow-delete block
. Theflood-stage watermark
happens when you have used 95% of the disk space for the data directory of your node. You need to free the space or increase it. – Branchia