Hi All. I am monitoring two solr 4.1 solr instances in master-slave setup. On both nodes I check url /solr/replication?command=details and parse it to get: - on master: if replication is enabled -> field replicationEnabled - on slave: if replication is enabled -> field replicationEnabled - on slave: if polling is disabled -> field isPollingDisabled For solr 3.6 I've als used url: solr/replication?command=indexversion but for 4.1 it gives me different results on master and slave, on slave the version is higher despite the fact that replication is enabled, polling is enabled and in admin gui /solr/#/collection1/replication I have: Index Version Gen Size Master: 1363259808632 3 22.59 KB Slave: 1363259808632 3 22.59 KB So as I see it master and slave have the same version of index despite the fact that /solr/replication?command=indexversion gives: - on master: <long name="indexversion">1363259808632</long> - on slave: <long name="indexversion">1363259880360</long> -> higher value Is this a bug?
Best regards, Rafal Radecki.