2

我正在使用 solr 来索引大量文档。我想监控这些文档的索引速度。

我将我的文档集合生成为 CSV 文件,然后通过 CURL 索引我的文档。所以我可以得到以毫秒为单位的 QTime。然后我可以通过 CSV 文件进行这个简单的计算来检查索引速度:

索引速度 = 我的 CSV 文件中的文档数 / Qtime

From Solr Documentation : 
QTime: The elapsed time (in milliseconds) between the arrival of the request (when the SolrQueryRequest object is created) and the completion of the request handler. It does not include time spent in the response writer formatting/streaming the response to the client.

我不确定这是监控索引速度的正确方法。它不是很精确,结果似乎不是很好......

有没有我可以使用的工具来代替这种古老的方法?!:)

感谢

4

1 回答 1

1

您可以使用 solrmeter https://code.google.com/p/solrmeter/来监控索引速度

于 2013-07-30T14:02:51.397 回答