Elasticsearch always returning “mapping type is missing”

匿名 (未验证) 提交于 2019-12-03 01:49:02

问题:

I'm following the advice given here in order to find partial words with elasticsearch:

ElasticSearch n-gram tokenfilter not finding partial words

I've created a simple bash script that attempts to run a version of this:

curl -XDELETE 10.160.86.134:9200/products curl -XPOST 10.160.86.134:9200/products -d '{   "index": {     "number_of_shards": 1,     "analysis": {        "filter": {          "mynGram" : {"type": "nGram", "min_gram": 2, "max_gram": 10}        },        "analyzer": {          "a1" : {            "type":"custom",            "tokenizer": "standard",            "filter": ["lowercase", "mynGram"]          }        }      }     }   } }'  curl -XPUT 10.160.86.134:9200/products/_mapping -d '{   "product" : {     "index_analyzer" : "a1",     "search_analyzer" : "standard",     "properties" : {       "product_description": {"type":"string"},       "product_name": {"type":"string"}     }   } }' 

Following running this script the first two commands (dumping products, then setting the index) seem to work giving me this:

{"ok":true,"acknowledged":true} {"ok":true,"acknowledged":true} 

Then it errors out following the mapping call giving me this:

{"error":"ActionRequestValidationException[Validation Failed: 1: mapping type is missing;]","status":500} 

Can anyone see what I'm doing wrong? Searching google starts autocompleting "mapping not found elasticsearch" so it seems to be a very common error.

回答1:

Turns out this is happening because the mapping needs to be applied to the type:

I tried applying it to the wrong thing:

curl -XPUT 10.160.86.134:9200/products/_mapping -d '{ 

It needs to be applied to the type like so:

curl -XPUT 10.160.86.134:9200/products/product/_mapping -d '{ 

It's sad that a simple google search couldn't answer this. Also the previous post I linked to is very misleading and the answer is wrong, which I'll point out there as well.



回答2:

Set mapping for the index is possible in Elastic search. I tried this with the latest version of Elastic search 1.7.3 and I was able to set the mapping successfully to the index.

I tried the following,



易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!