Здоровье кластера elasticsearch
Статус кластера: green/yellow/red, шарды, ноды
curl -s http://localhost:9200/_cluster/health | jq .
more elasticsearch
all 19 commands →
Список индексов
curl -s 'http://localhost:9200/_cat/indices?v&h=index,health,pri,rep,docs.count,store.size&s=store.size:desc'
Удалить индекс
curl -X DELETE http://localhost:9200/<index>
Настройки индекса
curl -s http://localhost:9200/<index>/_settings | jq .
Переиндексировать
curl -X POST http://localhost:9200/_reindex -H 'Content-Type: application/json' -d '{"source":{"index":"old"},"dest":{"index":"new"}}'
Force merge индекса
curl -X POST 'http://localhost:9200/<index>/_forcemerge?max_num_segments=1'