elasticsearch mapping的问题

2020-12-15 13:52发布

先感谢一个园子里面的各位老师,整个BBS的氛围非常好,也让我学到了很多东西,解决了不少的问题。下面是我一个关于es的问题。还请老师们继续能帮我解决一下。感激不尽

我是先添加了一个 mapping。

然后我添加数据时却一直报错

{
      "index" : {
        "_index" : "shakespeare",
        "_type" : "doc",
        "_id" : "1",
        "status" : 400,
        "error" : {
          "type" : "illegal_argument_exception",
          "reason" : "mapper [play_name] cannot be changed from type [keyword] to [text]"
        }
      }
    }

数据是从官方网站下载的,在没有添加 mapping 的情况下, 我直接添加数据可以添加成功,不过有了 mapping之后,再添加数据,就一直报这个错误。

这个是我的数据

{"index":{"_index":"shakespeare","_id":0}}
{"type":"act","line_id":1,"play_name":"Henry", "speech_number":"","line_number":"","speaker":"","text_entry":"ACT I"}
{"index":{"_index":"shakespeare","_id":1}}
{"type":"scene","line_id":2,"play_name":"Henry","speech_number":"","line_number":"","speaker":"","text_entry":"SCENE I. London. The palace."}

标签:
4条回答
三岁会撩人
2楼-- · 2020-12-15 14:05

你的操作顺序是否存在问题
比如你没建映射加数据,此时会自动建立映射

从空白开始如下的方式是没有问题的
curl -XPUT "localhost:9200/shakespeare" -H 'Content-Type: application/json' -d'
{
"mappings": {
"properties": {
"speaker": {"type": "keyword"},
"play_name": {"type": "keyword"},
"line_id": {"type": "integer"},
"speech_number": {"type": "integer"}
}
}
}
'
curl -H 'Content-Type: application/x-ndjson' -XPOST 'localhost:9200/shakespeare/_bulk?pretty' --data-binary @esdata/shakespeare_6.0.json

查看更多
Deceive 欺骗
3楼-- · 2020-12-15 14:09

keywork 不会进行分词,查询的时候整体查询,必须等于才可以
text 会分词,支持关键词查询

查看更多
Juvenile、少年°
4楼-- · 2020-12-15 14:12

把索引的play_name type改成text

查看更多
Animai°情兽
5楼-- · 2020-12-15 14:25

我尝试了一下,是没有问题的,你可以查看一下你现在的mapping情况

查看更多
登录 后发表回答