我在大容量导入数据时监视elasticsearch集群。
因此,当我运行curl localhost时:9200/_cat/thread?v
它显示:
host ip bulk.active bulk.queue bulk.rejected index.active index.queue index.rejected search.active search.queue search.rejected
xye@OptiPlex 127.0.0.1 8 6 0 0 0 0 0 0 0我目前正在同时运行5个脚本来导入数据,并且批量大小为500,而且我还增加了大容量队列大小300。
所以我想知道bulk.queue 6是什么意思。是在一次大容量操作中只有6个文档,还是实际上是6个批量请求,即6* 500 = 3000份文档?
发布于 2016-01-19 19:56:22
bulk.queue表示队列中的批量请求数,而不是文档数。index.queue表示要在index queue中索引的文档数。
https://stackoverflow.com/questions/34885674
复制相似问题