ElasticSearch3:RestAPI

1、集群健康

http://192.168.8.101:9200/_cat/health?v
ElasticSearch3:RestAPI

我们可以看到,我们命名为“elasticsearch”的集群现在是green状态。

无论何时我们请求集群健康时,我们会得到green, yellow, 或者 red 这三种状态。

Green : everything is good(一切都很好)(所有功能正常)
Yellow : 所有数据都是可用的,但有些副本还没有分配(所有功能正常)
Red : 有些数据不可用(部分功能正常)
从上面的响应中我们可以看到,集群"elasticsearch"总共有3个节点,0个分片因为还没有数据。

2、查看全部索引

http://192.168.8.101:9200/_cat/nodes?v
ElasticSearch3:RestAPI

3、创建一个索引

http://192.168.8.101:9200/customer?pretty
ElasticSearch3:RestAPI

ElasticSearch3:RestAPI

上一篇:P3647 [APIO2014]连珠线 树形DP+换根法


下一篇:[Php] windows下使用composer出现SHA384 is not supported by your openssl extension