ElasticSearch生产环境问题集锦
目录
问题一:无法入索引的问题、阻塞问题
问题一:无法入索引的问题、阻塞问题
查询ES磁盘占用情况:
#查询空间占用
curl -X GET "172.17.93.***:9200/_cat/allocation?v"#空间占比设置
curl -X PUT "172.17.93.***:9200/_cluster/settings" -H 'Content-Type: application/json' -d'
{"persistent": {"cluster.routing.allocation.disk.threshold_enabled": true,"cluster.routing.allocation.disk.watermark.low": "85%","cluster.routing.allocation.disk.watermark.high": "90%","cluster.routing.allocation.disk.watermark.flood_stage": "95%"}
}
'#清除阻塞
curl -X PUT "172.17.93.***:9200/_all/_settings" -H 'Content-Type: application/json' -d'
{"index.blocks.read_only_allow_delete": null
}
'