创建索引学生并加载json数据。json数据样本:
{
"name": "Daniel",
"joiningdate": "06-28-2018",
"street": "mark street",
"city":"sj"
}
_mapping
{
.....
"properties":{ "joiningdate":{"type":"date","format":"mm-dd-yyyy"}}..
}在用计数绘制时间图时,它显示的是空记录。有什么想法吗?
发布于 2018-07-05 05:56:18
您的日期格式应该是MM-dd-yyyy,因为mm代表几分钟,而不是几个月。还需要确保为索引创建索引模式。
"properties":{ "joiningdate":{"type":"date","format":"MM-dd-yyyy"}}..
^
|
change thishttps://stackoverflow.com/questions/51135668
复制相似问题