Why does Apache Nutch sometimes get stuck using a single thread and crawling slowly?
Nutch generates a list of urls to fetch from the crawldb. In ./bin/crawl it defaults the size of the fetch list to sizeFetchList=50000. If you use the default setting generate.max.count=-1 which is unrestricted, you can potentially end up with 50000 urls from the same domain in your fetch list. Then the setting fetcher.queue.mode=byHost only creates […]
Why does Apache Nutch sometimes get stuck using a single thread and crawling slowly? Read More »