Elasticsearch创建映射问题

时间:2016-04-08 13:28:56

标签: elasticsearch elasticsearch-mapping

我正在关注此博客以实现自动填充功能。我尝试创建确切的映射但偶然发现了一些错误。

以下是我想要的映射查询。

curl -XPUT "http://localhost:9200/blurays " -d'
{
   "settings": {
      "analysis": {
         "filter": {
            "nGram_filter": {
               "type": "nGram",
               "min_gram": 2,
               "max_gram": 20,
               "token_chars": [
                  "letter",
                  "digit",
                  "punctuation",
                  "symbol"
               ]
            }
         },
         "analyzer": {
            "nGram_analyzer": {
               "type": "custom",
               "tokenizer": "whitespace",
               "filter": [
                  "lowercase",
                  "asciifolding",
                  "nGram_filter"
               ]
            },
            "whitespace_analyzer": {
               "type": "custom",
               "tokenizer": "whitespace",
               "filter": [
                  "lowercase",
                  "asciifolding"
               ]
            }
         }
      }
   },
   "mappings": {
      "movies": {
         "_all": {
            "index_analyzer": "nGram_analyzer",
            "search_analyzer": "whitespace_analyzer"
         },
         "properties": {
            "addToCartUrl": {
               "type": "string",
               "index": "no",
               "include_in_all": false
            },
            "format": {
               "type": "string",
               "index": "not_analyzed"
            },
            "mpaaRating": {
               "type": "string",
               "index": "not_analyzed",
               "include_in_all": false
            },
            "price": {
               "type": "double",
               "include_in_all": false
            }
         }
      }
   }
}'

以下是我得到的错误: -

analyzer on field [_all] must be set when search_analyzer is set

我正在使用最新版本的ES,即2.3,这是2年前写的。我刚开始学习ES。可能的解决办法是什么?

2 个答案:

答案 0 :(得分:6)

定义_all字段时,您需要将index_analyzer替换为analyzer,因为这是renamed in 2.0

     "_all": {
        "analyzer": "nGram_analyzer",
        "search_analyzer": "whitespace_analyzer"
     },

同意,错误信息可能会更好。

答案 1 :(得分:0)