gpt4 book ai didi

ElasticSearch:查找索引的索引率

转载 作者:行者123 更新时间:2023-12-02 22:15:54 24 4
gpt4 key购买 nike

我很想知道在特定索引中索引(创建/更新)了多少文档。我查看了 _stats api,但无法理解它。谁能告诉我如何计算索引率。它可以是每秒/分钟。谢谢

最佳答案

Elasticsearch 不直接提供此数据,但您对 API 的看法是正确的。

_stat API 上,您必须查看索引操作的总数(自服务器启动以来)并存储您调用它的时间:

GET _stats?filter_path=indices.index_name_here.total.indexing.index_total

{
"indices": {
"index_name_here": {
"total": {
"indexing": {
"index_total": 555
}
}
}
}
}

有时,您需要对同一个 API 进行第二次调用:

{
"indices": {
"index_name_here": {
"total": {
"indexing": {
"index_total": 666
}
}
}
}
}

通过一些计算,您将获得索引率:

  • 12:00:00 首次通话 => 555
  • 12:01:00 第二次通话 => 666
  • 索引率为每分钟 111 个文档。

关于ElasticSearch:查找索引的索引率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51328013/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com