Список индексов с размером elasticsearch
Все индексы по убыванию размера
curl -s 'http://es:9200/_cat/indices?v&s=store.size:desc'
more elasticsearch
all 19 commands →
Удалить старый индекс
curl -X DELETE http://es:9200/logs-2024.01.01
Поиск с Query DSL
curl -X GET 'http://es:9200/logs-*/_search?pretty' -H 'Content-Type: application/json' -d '{"query":{"match":{"level":"error"}},"size":5}'
Распределение шардов
curl -s 'http://es:9200/_cat/shards?v&h=index,shard,prirep,state,node,unassigned.reason'
Принудительное переназначение шарда
curl -X POST http://es:9200/_cluster/reroute?retry_failed=true
Обновить настройки индекса
curl -X PUT 'http://es:9200/my-index/_settings' -H 'Content-Type: application/json' -d '{"index":{"number_of_replicas":1}}'