What is a good crawler (spider) to use against HTML and XML documents (local or web-based) and that works well in the Lucene / Solr solution space? Could be Java-based but does not have to be.
|
1
|
|||
|
|
|
|
In my opinion, this is a pretty significant hole which is keeping down the widespread adoption of Solr. The new DataImportHandler is a good first step to import structured data, but there is not a good document ingestion pipeline for Solr. Nutch does work, but the integration between Nutch crawler and Solr is somewhat clumsy. |
||
|
|
|
|
Also check Apache Droids [http://incubator.apache.org/droids/] -- this hopes not be a simple spider/crawler/worker framework. It is new and is not yet easy to use off the shelf (it will take some tweeking to get running), but is a good thing to keep your eye on. |
||
|
|
|
|
I've tried nutch, but it was very difficult to integrate with Solr. I would take a look at Heritrix. It has an extensive plugin system to make it easy to integrate with Solr, and it is much much faster at crawling. It makes extensive use of threads to speed up the process. |
||
|
|
|
|
I suggest you to check out Nutch to get some inspiration:
|
||
|
|
|
|
Nutch might be your closest match, but it's not too flexible. If you need something more you will have to pretty much hack your own crawler. It's not as bad as it sounds, every language has web libraries, so you just need to connect some task queue manager with HTTP downloader and HTML parser, it's not really that much work. You can most likely get away with a single box, as crawling is mostly bandwidth-intentive, not CPU-intensive. |
||
|
|
|
|
Did anyone tried Xapian? It seams much quicker than solr and written in c++. |
||
|
|
|
|
im looking for one solution like that. i need to index job pages like one job spider or job crawler and integrate it one my job portal site. if anyone already have this solution please drop me a line. tks. ale at ivagas dot com |
||
|
|
|
|
I developed a crawler for solr (but not only). The main goals with this crawler are :
The crawler is developped in java. A MySQL database is used in order to store each crawled item reference (crawl status, last crawl time, next crawl time, mime type, ...). Hurisearch (www.hurisearch.org) crawls 5400 web sites and near 10.000.000 pages were crawled and indexed. All sources can be crawled in 3 days. Hurisearch uses only one linux debian dedicated server (http://www.ovh.com/fr/produits/superplan_best_of.xml) for both indexing and search. A dedicated web sites will be available soon in order to describe this crawler. The link will be provided in this french article http://www.zoonix.fr/2010/03/07/un-crawler-web-pour-solr/ |
||
|
|
