当前位置:   article > 正文

ElasticSearch 新增表字段_elasticsearch添加字段

elasticsearch添加字段

1.新增表字段(Elasticsearch中的mapping一旦创建,就不容易再修改。但是添加字段是可以的)::

PUT my_index/_mapping/my_type
{
? "properties": {
??? "new_column": { 
????? "type":???? "integer"
??? }
? }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

2.修改表字段的方法

http://www.cnblogs.com/Creator/p/3722408.html

3.ElasticSearch 数据架构的主要概念(与关系数据库Mysql对比)

这里写图片描述

4.多字段查询:

POST /my_index/post/_search
{
  
  
  "query": {
    "bool": {
      "must": {
        "multi_match" : {
  	  			"query" : "search_key",
   	 			  "type" : "best_fields",
   				  "fields" : ["column1", "column2"],
   				  "analyzer" : "ik_smart"
      		}
      },
      "filter": {
          "range":{
            "column3":{
              "lte":1//小于
            }
          }
          
      }
    }
  },
 "stored_fields": ["column1", "column2", "column3", "column4","column5"], 
  "highlight" : {//高亮显示
    "fields" : {
      "column1" : {},
      "column2" : {}
    }
  }
}
  • 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
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Guff_9hys/article/detail/912755
推荐阅读
相关标签
  

闽ICP备14008679号