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 ?