【ES 基础】-- ES 频繁使用的操作汇总

ES 频繁使用的操作汇总

1.求助:help

# GET _cat/indices?help

 

2.查看当前 bulk 占用情况

# GET _cat/thread_pool/bulk?v

 

3.查看 ES 个节点状态

# GET _nodes/stats?pretty

# GET _cluster/stats

# GET _cluster/pending_tasks

 

4.查看 ES 模版

# GET _template/your_template_name

 

5.统计 index 的 docs 数量、shard 分片数

# GET your_index-name/_count

 

6.查询 segment 碎片数量

# GET /_cat/segments/your_index_name

 

7.查询 index shard 数量

# GET /_cat/shards/your_index_name?v

 

8.查寻 es 的分片数量、主分片大小和 docs 数量

# GET /_cat/indices/your_idnex_prefix-*?h=i,p,pri.store.size

 

9.查询 reindex task 情况

# GET _tasks?detailed=true&actions=*reindex 

 

10.取消正在 reindex 的 task

POST _tasks/es.abd.bigdata.beijing.jd.cn.0:346541573/_cancel

 

----------------------- 持续更新中 -------------------------

你可能感兴趣的:(【ES 基础】-- ES 频繁使用的操作汇总)