SOLR replication keeps downloading entire index from master

牧云@^-^@ 提交于 2019-12-01 09:13:16

I can only see three possible causes of this:

  1. An optimize is triggered during the time interval causing all of the underlying segmets to be merged. See: Optimize performance
  2. You're running with an exessivly high merge factor causing your index to merge with every commit. See: Merge factor
  3. You're running with compund files. See the config: <useCompoundFile>false</useCompoundFile> This also causes a segment merge at every commit.

The only way I can think of how to debug this is by manually makingt the replication with the Solr Replication HTTP API.

Disable the replication and watch how files are updated in the Solr master with the command: http://host:port/solr/replication?command=indexversion

followed by:

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

Hope this helps!

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!