Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I find these things from Apache Solr. As I have several documents indexed into Apache Solr. I need to find these things--

Last_commit Time
Last_Optimize Time
Last_Replication Time
Index Size

Any suggestions will be appreciated.

share|improve this question

1 Answer

up vote 0 down vote accepted

You can find the details for the replication time and index size with the replication details.

http://localhost:8983/solr/replication/?command=details

Response -

<str name="indexSize">192.07 MB</str>

<arr name="indexReplicatedAtList">
    <str>Thu Nov 10 09:01:44 EST 2011</str>
</arr>

Not sure, if there is a direct handle to get the last commit and optimize time through http.

share|improve this answer
Thanks for the information. And last commit time is last modified time or something else. As I can get the last modified date from luke request handler.. – TechGeeky Nov 11 '11 at 17:37
,And indexReplicatedAtList is the replication time or indexReplicatedAt is the replication time – TechGeeky Nov 11 '11 at 17:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.