如何熟悉常用的Elasticsearch命令?
- By : Will
- Category : Elastic Stack
Elastic Stack
1 前言
一个问题,一篇文章,一出故事。
本章将整理Elasticsearch经常使用的命令,以便查阅。
2 最佳实践
集群状态:curl http://localhost:9200/_cluster/health?pretty
集群节点状态:curl http://localhost:9200/_cat/nodes?v
分片状态:curl http://localhost:9200/_cat/shards
索引分片存储信息:curl http://localhost:9200/index/_shard_stores?pretty
索引状态:curl http://localhost:9200/index/_stats?pretty
索引元数据:curl http://localhost:9200/index?pretty
没有评论