0
未能更新到ElasticSearch 2之後我沒有更多的能夠映射爲不同類型的ContextSuggester:繪圖上下文建議者在ElasticSearch 2
PUT /test/foo/_mapping
{
"properties": {
"suggest": {
"type": "completion",
"context": {
"type": {
"type": "category",
"path": "_type",
"default": [
"foo"
]
}
}
}
}
}
PUT /test/bar/_mapping
{
"properties": {
"suggest": {
"type": "completion",
"context": {
"type": {
"type": "category",
"path": "_type",
"default": [
"bar"
]
}
}
}
}
}
把地圖用於第二類型端在以下情況例外:
映射爲[建議]與其他類型的現有映射衝突:映射器[建議]具有不同[context_mapping]值]
問題是,不同類型的默認值不同。從我的角度來看,這應該是預期的方法。我怎麼解決這個問題?
測試ES版本:2.2.1