Elasticsearch建立mapping关系时,默认会给string类型加上分词。
所以例如openid这种,如果你用默认的分词,就可能会出现查不到数据的情况。
解决方案:
1.将数据备份
2.recreate index
3.create new mapping
给openid加上 "index":"not_analyzed"
4.重新导入数据