Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can we monitor SOLR data fetching speed?

Tags:

php

solr

I am using SOLR for searching data. Is their any method to identify SOLR data fetching speed?


1 Answers

If you mean on monitoring the speed of Solr fetching the data, the response from Solr includes a QTime attribute that you could use.

What is QTime a measure of?

QTime is the elapsed time (in milliseconds) between the arrival of the request (when the SolrQueryRequest object is created) and the completion of the request handler. In other words, it will tell you how long it took to execute your query including things like query parsing, the actual search, faceting etc.

If that will meet your need, I would recommend reading the following post from the Solr User Group where options for monitoring this value were discussed.

  • Monitor the QTime
like image 191
Paige Cook Avatar answered Dec 31 '25 11:12

Paige Cook