架构师成长记_第八周_04_ES-head 与 postman基于索引的基本操作
Posted _大木_
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了架构师成长记_第八周_04_ES-head 与 postman基于索引的基本操作相关的知识,希望对你有一定的参考价值。
文章目录
ES-head 与 postman基于索引的基本操作
1. ES-head
2. postMan
3. 基本操作
1. 创建索引
方式一:
方式二:
PUT:http://192.168.92.140:9200/index_temp
"settings":
"index":
"number_of_shards": "2",
"number_of_replicas": "0"
2. 查询集群健康
GET:http://192.168.92.140:9200/_cluster/health
3. 删除一个索引
方式一:
方式二:
DELETE:http://192.168.92.140:9200/index_123
4. 查看索引信息
查看单个索引信息:
GET: http://192.168.92.140:9200/index_temp
查看所有索引信息:
GET: http://192.168.92.140:9200/_cat/indices
GET: http://192.168.92.140:9200/_cat/indices?v
以上是关于架构师成长记_第八周_04_ES-head 与 postman基于索引的基本操作的主要内容,如果未能解决你的问题,请参考以下文章
架构师成长记_第八周_13_dsl搜索-查询所有内容与分页查询
架构师成长记_第八周_13_dsl搜索-查询所有内容与分页查询