solrJを使用してドキュメントをsolrサーバーに追加しています。マスター/スレーブのセットアップがあります。http://URL/update?commit=true
インデックスを作成した後、マスターノードで検索を実行できるようにコミットを実行します。ただし、レプリケーションの場合、replication?command = detailsを使用してindexversionの詳細を表示すると、indexverionとreplicatableindexversionが異なることがわかります。
`<arr name="commits">
<lst>
<long name="indexVersion">1346928051888</long>
<long name="generation">1907</long>
<arr name="filelist"></arr>
</lst>
</arr>
<str name="isMaster">true</str>
<str name="isSlave">false</str>
<long name="indexVersion">1346928051888</long>
<long name="generation">1907</long>
<lst name="master"><arr name="replicateAfter"><str>commit</str>
<str>startup</str></arr>
<str name="replicationEnabled">true</str>
<long name="replicatableIndexVersion">1346928046763</long>
<long name="replicatableGeneration">1</long></lst>
</lst>`
Because of this the slave is not replicating the commited document.
Here is the code i used for solrJ to add documents
Collection<SolrInputDocument> docs = new ArrayList<SolrInputDocument>();
SolrInputDocument doc = new SolrInputDocument();
doc.add(FIELDS);
docs.add(doc);
SolrInputDocument doc = new SolrInputDocument();
doc.add(FIELDS);
docs.add(doc);
SolrInputDocument doc = new SolrInputDocument();
doc.add(FIELDS);
docs.add(doc);
server.add(docs);
server.commit();
ここに何か足りないものがありますか?どんな助けでも大歓迎です。ありがとう