Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using nutch 1.5 and solr 3.5. I would like to know the best way to update solr index through nutch. The seedlist.txt in nutch contains about a million urls. New urls will be added daily. Also, some of the urls will be removed or updated.

The nutch command "./nutch crawl urls -solr /solr/ -dir crawl -depth 1 -topN 10" will pickup the newly added urls for indexing. However, the updated and removed urls will not be touched at all.

By removing the crawl folder and re-index again will fix the "add" and "update" issue. However, it will take a long time to crawl a million urls as well as the "remove" urls index are still in Solr.

The only want I know to remove Solr index is use the update command like "update?commit=true&stream.body=id:xxxx".

Am I in the correct direction ? or there is a better way to do that ?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.