Elasticsearch的一些api随记

来自三线的随记
Admin讨论 | 贡献2021年2月19日 (五) 18:13的版本 (创建页面,内容为“health /_cat/health /_cluster/health nodes /_cat/nodes cluster allocation explain /_cluster/allocation/explain shards /_cat/shards /_cat/shards?index=index_n…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

health

/_cat/health
/_cluster/health

nodes

/_cat/nodes

cluster allocation explain

/_cluster/allocation/explain

shards

/_cat/shards
/_cat/shards?index=index_name

settings

/_cluster/settings?include_defaults=true
# es 6.8.2
# PUT /_cluster/settings
{
    "persistent": {
        "cluster": {
            "routing": {
                "allocation": {
                    "node_initial_primaries_recoveries": 8
                }
            }
        }
    }
}