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

A very similar question was asked sometime ago: SOLR replication keeps downloading entire index from master

  • I do not issue optimize on masters
  • The Merge factor is lower than the default
  • I tried both options in the useCompoundFile, same result

On my case it happened after upgrading to 4.1, the hardware still the same.

Looking at how files are updated in the Solr master, I do:

http://host:port/solr/replication?command=indexversion

and the result is:

<response>
<lst name="responseHeader">
<int name="status">0</int>
<int name="QTime">0</int>
</lst>
<long name="indexversion">1361427997259</long>
<long name="generation">36967</long>
</response>

after a commit I see it changes to:

<response>
<lst name="responseHeader">
<int name="status">0</int>
<int name="QTime">0</int>
</lst>
<long name="indexversion">1361428018517</long>
<long name="generation">36968</long>
</response>

Any tips on how to further debug this?

share|improve this question
This is a bug in solr 4.1 see: issues.apache.org/jira/browse/SOLR-4482 – Helder Sepulveda Feb 21 at 19:33

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.