ElasticSearch常用查询命令(REST)汇总

集群状态查看

http://localhost:9200/_cat/health?v

  • 状态说明
    green:表示所有主分片(primary shard)和副本分片(replica shard)都可用(active)
    yellow:表示所有主分片可用,但不是所有副本分片都可用
    red:表示不是所有主分片可用

查看所有索引

http://localhost:9200/_cat/indices?v
索引状态与集群状态含义一致。

查看索引字段结构定义

http://localhost:9200/{索引名称}/_mapping?pretty
http://localhost:9200/{索引名称}/{类型名称}/_mapping?pretty

查看所有分片

http://localhost:9200/_cat/shards?v

##查询指定索引数据
http://localhost:9200/{索引名称}/_search?pretty
http://localhost:9200/{索引名称}/{类型名称}/_search?pretty

你可能感兴趣的:(Java,elasticsearch)