1. 问题描述
logstash 写 es 大量报错,主要内容如下:
retrying failed action with response code: 403 ({“type”=>”cluster_block_exception”, “reason”=>”blocked by: [FORBIDDEN/12/index read-only / allow delete (api)];
2. 解决方案
curl -XPUT -H “Content-Type: application/json” http://localhost:9200/_all/_settings -d ‘{“index.blocks.read_only_allow_delete”: null}’
也可以直接在 kibana 的 console 中直接运行以下命令:
PUT /_all/_settings
{“index.blocks.read_only_allow_delete”: null}
3. 问题原因
主要是因为磁盘不够用了。Elasticsearch 会在索引无法存储更多 document 的时候自动将索引切换为 read-only,以保证能够查询。如果你自己手动删除了数据,Elasticsearch 不会给你自动切换回来,不过你可以手动去修改。就是用上面的命令就好了。
4. 相关资料
https://discuss.elastic.co/t/…
https://discuss.elastic.co/t/…
https://benjaminknofe.com/blo…