I am trying to index almost 3 million xml files with lucene solr. When I try to use command line "java -jar post.jar *.xml". There is no response from the machine. How can I do the indexing? Big thanks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
The Open library project a while ago loaded a large number of books into solr for it's search purposes. There's a blog post about it here which might be useful to you. |
|||
|
|
|
Break it into smaller batches. E.g. assuming your XML files are named aaa.xml to zzz.xml and fairly distributed, first send "java -jar a*.xml", then "java -jar b*.xml", etc. |
|||
|
|
|
Have you tried loading 3000 documents? Were you successful, and how long did it take? You haven't said how big the files are, so it's impossible to give estimates, but I've seen database loading (not lucene, but similar) run at 100,000 documents per hour. |
|||
|
|