このブログをフォローして、オートコンプリート機能を実装しています。正確なマッピングを作成しようとしましたが、エラーが発生しました。
以下は、私の意図したマッピングクエリです。
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の勉強を始めたばかりです。これに対する可能な解決策は何ですか?