如何更新 Elasticsearch 索引中每个文档的时间戳值?
_source": {
"_timestamp": 1338859632,
"cpu_percent": 65
}
我的 Elasticsearch 索引中有上述格式的文档。我想将“_timestamp”值乘以 1000(秒到毫秒)。
还有一个“_timestamp”是日期时间格式的映射。
我该如何进行上述操作呢?
_source": {
"_timestamp": 1338859632,
"cpu_percent": 65
}
I have docs in the format above in my Elasticsearch index. I would like to multiply "_timestamp" values by 1000 (sec to milli seconds).
There is also a mapping that "_timestamp" is in date time format.
How can I do the above operation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用以下
update_by_query
:You can use below
update_by_query
: