如何更新 Elasticsearch 索引中每个文档的时间戳值?

发布于 2025-01-11 13:03:35 字数 208 浏览 0 评论 0原文

    _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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哭泣的笑容 2025-01-18 13:03:35

您可以使用以下update_by_query

POST datesample/_update_by_query
{
  "query": {
    "match_all": {}
  },
  "script": {
    "source": "ctx._source['_timestamp'] = ctx._source['_timestamp'] * 1000L",
    "lang": "painless"
  }
}

You can use below update_by_query:

POST datesample/_update_by_query
{
  "query": {
    "match_all": {}
  },
  "script": {
    "source": "ctx._source['_timestamp'] = ctx._source['_timestamp'] * 1000L",
    "lang": "painless"
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文