ES语法使用

Posted lucky_xian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES语法使用相关的知识,希望对你有一定的参考价值。

这里写自定义目录标题

1. 查看所有索引:
GET _cat/indices
2. 查看索引的数据:
GET /xxx/_search

  "query": 
    "match_all": 
    
  

3.查看索引别名:
GET /xxx/_alias
4.查询某个字段是否为空:
GET /xxx/_search

  "query": 
    "bool": 
      "must_not": 
        "exists": 
          "field": "idInfo.lessonId"
        
      
    
  

5.设置别名
POST _aliases

  "actions" : ["add" : "index" : "xxx" , "alias" : "tiku_live_stat"]

6.获取mapping:
GET  xxx/_mapping
7.设置mapping:
put /xxxxx

    "settings": 
    "index": 
      "number_of_shards" : "5",
      "number_of_replicas" : "3"
    
  

PUT xxxxx/doc/_mapping

     "properties" : 
          
        

以上是关于ES语法使用的主要内容,如果未能解决你的问题,请参考以下文章

ES6最新语法

ES6常用语法

Webpack 4 学习06(使用babel编译ES6)

如何使用 ES6/ES7 语法导入 jQuery UI?

ES语法使用

ES语法使用