今天遇到这样的问题:字段的mapping type设置为keyword后,数值不能被匹配到 ,大家有遇到过么?
如下:
---mapping {
"properties": {
"test": {
"type": "keyword"
}
}
}
---存了一条这个数据
"_source": {
"test": 565
}
--查询 不到
{
"query": {
"match": {
"test": 565
}
}
}
如下:
---mapping {
"properties": {
"test": {
"type": "keyword"
}
}
}
---存了一条这个数据
"_source": {
"test": 565
}
--查询 不到
{
"query": {
"match": {
"test": 565
}
}
}
1 个回复
rockybean - Elastic Certified Engineer, ElasticStack Fans,公众号:ElasticTalk
赞同来自: MoFanDon