作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 Elasticsearch 映射大致如下所示:
{
"myIndex": {
"mappings": {
"myType": {
"_timestamp": {
"enabled": true,
"store": true
},
"properties": {
"LastUpdated": {
"type": "date",
"format": "dateOptionalTime"
}
/* lots of other properties */
}
}
}
}
}
{
"aggregations": {
"counts": {
"terms": {
"script": "doc.LastUpdated == empty ? doc._timestamp : doc.LastUpdated"
}
}
}
}
buckets: [
{
key: org.elasticsearch.index.fielddata.ScriptDocValues$Longs@7ba1f463doc_count: 300544
}{
key: org.elasticsearch.index.fielddata.ScriptDocValues$Longs@5a298acbdoc_count: 257222
}{
key: org.elasticsearch.index.fielddata.ScriptDocValues$Longs@6e451b5edoc_count: 101117
},
...
]
最佳答案
我已经为你测试并制作了一个时髦的脚本,
POST index/type/_search
{
"aggs": {
"counts": {
"terms": {
"script": "ts=doc['_timestamp'].getValue();v=doc['LastUpdated'].getValue();rv=v?:ts;rv",
"lang": "groovy"
}
}
}
}
关于elasticsearch - 聚合 "LastUpdated"属性或 _timestamp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25296724/
我正在尝试为ES 6.6.0设置以下映射,但出现此错误; Caused by: org.elasticsearch.index.mapper.MapperParsingException: Root
我的 Elasticsearch 映射大致如下所示: { "myIndex": { "mappings": { "myType": { "_timestamp"
我试图在 mysql 数据库中隔离一些匹配模式的表,该模式可以描述为 一些名字_10 位数字时间戳 例如: | oxseohistory_1381393508 | | oxseohisto
我有一个 Elasticsearch 索引,它在每条记录上填充了 _timestamp。使用 Marvel 或 curl 我可以在结果的“字段”部分获得 _timestamp 例如: GET inde
我在我正在构建的 Web 应用程序中使用 PDO 准备语句。我有一个时间戳列设置为 current_timestamp 作为默认值。 使用时间戳通常应该在列值为 null 时分配当前时间戳,就像 no
我是一名优秀的程序员,十分优秀!