作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
key_as_string
在我不使用 "format": "YYYY-MM-DD"
时没问题:
{
"aggs" : {
"Filed" : {
"date_histogram" : {
"field" : "filing_date",
"interval" : "day"
}
}
}
}
返回
...
{
"key_as_string" : "2015-12-30T00:00:00.000Z",
"key" : 1451433600000,
"doc_count" : 12
}, {
"key_as_string" : "2015-12-31T00:00:00.000Z",
"key" : 1451520000000,
"doc_count" : 2
}, {
"key_as_string" : "2016-01-01T00:00:00.000Z",
"key" : 1451606400000,
"doc_count" : 2
}, ...
但是,在我应用格式之后,它返回了
...
{
"key_as_string" : "2015-12-364",
"key" : 1451433600000,
"doc_count" : 12
}, {
"key_as_string" : "2015-12-365",
"key" : 1451520000000,
"doc_count" : 2
}, {
"key_as_string" : "2016-01-01",
"key" : 1451606400000,
"doc_count" : 2
}, ...
这显然是错误的。这是错误还是我遗漏了什么?
最佳答案
我认为这只是错误的日期格式,所以您错误地得到了一年中的 3 位数日期。假设您要查找基本的四位数年份、两位数月份和两位数月份日期,请将格式字符串更改为:
"format": "yyyy-MM-dd"
注意小写的 d。
关于elasticsearch - 日期直方图中返回格式错误的 `key_as_string`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35073707/
key_as_string 在我不使用 "format": "YYYY-MM-DD" 时没问题: { "aggs" : { "Filed" : { "d
我是一名优秀的程序员,十分优秀!