当前位置:   article > 正文

ElasticSearch的索引操作_elasticsearch如何查看索引

elasticsearch如何查看索引

一、创建索引

一、创建索引

PUT /student_test
  • 1

二、创建索引并且指定分片数量(2个分片,2个副本)

PUT /student
{
  "settings": {
    "number_of_shards": 2,
    "number_of_replicas": 2
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

三、创建索引并且指定分片数量与Mapping映射

PUT /teacher
{
  "settings": {
    "number_of_shards": 2,
    "number_of_replicas": 2
  },
  "mappings":{
    "properties":{
      "id":{
        "type":"integer"
      },
      "name":{
        "type":"keyword"
      },
      "age":{
        "type":"long"
      },
      "desc":{
        "type":"text"
      },
      "birthday":{
        "type":"date"
      }
    }
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26

二、查看索引

一、查看单个索引信息

GET /teacher
  • 1

二、查看所有索引

GET /_cat/indices
  • 1

三、查看指定索引文档总数

GET /student_test/_count
  • 1

四、查看所有索引文档总数

GET _all/_count
  • 1

五、查看单个索引切片信息

GET /_cat/shards/student_test?v
  • 1

六、查看各索引占用内存大小并倒序

GET /_cat/indices?v&h=i,tm&s=tm:desc
  • 1

七、查看个索引文档数量并倒序

GET /_cat/indices?v&s=docs.count:desc
  • 1

八、查看健康状态为绿的索引

GET /_cat/indices?v&health=green
  • 1

三、删除索引

一、删除单个索引

DELETE /student_test1
  • 1

四、修改索引

一、修改分片副本

PUT /teacher/_settings
{
  "index":{
    "number_of_replicas":4
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

二、新增Mapping映射

POST /teacher/_mapping
{
  "properties":{
    "phone":{
      "type":"keyword"
    }
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/882885
推荐阅读
相关标签
  

闽ICP备14008679号