我正在尝试用日期字段填充面积图。 它在kibana中不起作用,当我检查Elasticsearch查询时,它在那儿工作。
它可以在ElasticSearch查询中使用。
我的映射如下:
PUT test1
{
"settings": {
"index.mapping.ignore_malformed": true
},
"mappings": {
"each_file": {
"properties": {
"Size": {"type": "integer","ignore_malformed": false },
"Path ID": {"type": "integer","ignore_malformed": false },
"Family Item Number": {"type": "integer","ignore_malformed": false },
"Creation Time": {"type": "date", "format": "E dd MMM yyyy HH:mm:ss a z"},
"Document Creation Time": {"type": "date", "format": "E dd MMM yyyy HH:mm:ss a z"},
"Document Modification Time": {"type": "date", "format": "E dd MMM yyyy HH:mm:ss a z"},
"Email Received Time": {"type": "date", "format": "E dd MMM yyyy HH:mm:ss a z"},
"Email Sent Time": {"type": "date", "format": "E dd MMM yyyy HH:mm:ss a z"},
"Modification Time": {"type": "date", "format": "E dd MMM yyyy HH:mm:ss a z"}
}
}
}
}
我的日期格式:文档创建时间:2001年11月2日(星期五)IST
我们将不胜感激。
谢谢。
答案 0 :(得分:0)
看起来_ignored
字段的格式错误,因为它出现在搜索查询响应中的setVector
下。您已在索引映射中将忽略格式错误的字段设置设置为true。