Hi, the total number of documents in an index of lucene is
Integer.MAX_VALUE. So using a single lucene index to index billions
documents is not a proper ways. You should consider using Solr Cloud or
Elasticsearch to index your documents.
On 19:43, Fri, 12 Jun 2015 Gimantha Bandara wrote:
> Hi al
Hi all,
We are using Lucene 4.10.3 for indexing. Recently we changed our
implementation so that we give data batchwise to lucene to index. Earlier
we just query all the data from the data source and index all data at
once. It works well. But the number of entries can be up to billions. So
getting