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?