Reputation: 311
I have indexed a little over 5 million files with Open Semantic that uses Apache Solr.
I'm still indexing now and I don't get any error message during the indexing but I don't see the file count increase on the number of indexed files nor can I search those newly indexed documents.
Is there a limit to the number of documents that can be indexed? Is there a log where I could find error messages?
Thanks for your help! Yoann
Upvotes: 0
Views: 273
Reputation: 15791
Each Solr shard (or core, if you using standalone mode) can hold 2B docs, so I am pretty sure you are ok regarding number of docs.
Logs can be seen in $SOLR_HOME/server/logs/solr.log, you should see additional rolling log files.
Maybe that tool does not commit till the end, and if no commit is done (explicit or by autocommit settings) no docs are seen yet.
Upvotes: 1