我正在尝试搜索在某个范围内具有日期字段的所有项目,但它失败了(不返回任何结果)
查询:
{
"query": {
"filtered": {
"query": {
"match_all": {}
},
"filter": {
"range": {
"last_updated": {
"from": "2013-01-01 00:00:00"
}
}
}
}
}
}
映射:
{
"my_doctype": {
"_timestamp": {
"enabled": "true"
},
"properties": {
"cards": {
"type": "integer"
},
"last_updated": {
"type": "date",
"format": "yyyy-MM-dd HH:mm:ss"
}
}
}
}
结果是:
{
took: 1
timed_out: false
_shards: {
total: 1
successful: 1
failed: 0
}
hits: {
total: 0
max_score: null
hits: [ ]
}
}
由具有数值的整数字段(“卡片”)的范围过滤的相同查询可以正常工作。将日期更改为非常早的开始 (1900-01-01 00:00:00) 也未显示任何结果。
我究竟做错了什么?
顺便说一句,我知道我在映射中启用了 _timestamp,但这不是我过滤的字段。