Snapshot to repository elasticsearch
Create a cluster snapshot synchronously
curl -X PUT 'http://es:9200/_snapshot/my_repo/snap1?wait_for_completion=true'
more elasticsearch
all 19 commands →
Cluster health
curl -s http://localhost:9200/_cluster/health | jq .
List indices
curl -s 'http://localhost:9200/_cat/indices?v&h=index,health,pri,rep,docs.count,store.size&s=store.size:desc'
Delete index
curl -X DELETE http://localhost:9200/<index>
Get index settings
curl -s http://localhost:9200/<index>/_settings | jq .
Reindex
curl -X POST http://localhost:9200/_reindex -H 'Content-Type: application/json' -d '{"source":{"index":"old"},"dest":{"index":"new"}}'