Reputation: 979
I have an indexing application which uses lucene index to index the documents and the index could grow up-to 10 GB.
Is there any size limit for lucene index?
Upvotes: 3
Views: 1127
Reputation: 21244
There is no file size limit for indexes. However there are limits on the number of terms and the number of documents that can be indexed. See the bottom of this page for those limits.
Upvotes: 4