Nutch is open source web-search software. It builds on Lucene and Solr, adding web-specifics, such as a crawler, a link-graph database, parsers for HTML and other document formats, etc.

learn more… | top users | synonyms

0
votes
0answers
85 views

Backlinks to a site using APIs

I need to make a list of backlinks to sites (pages that link to a site) at large depth (so a tree of backlinks of backlinks upto n depth). The paper I am using suggests usage of Google SOAP api but ...
0
votes
0answers
178 views

Nutch-Solr Mapping: copying field content frome one field to multiple others

I want to copy the content of one field to multiple other fields (not just one). Currently it is only copied to the last field in the list. I only found examples with one one copy. In ...
0
votes
0answers
170 views

not able run nutch in netbeans?

I dont know which path to give under "Web page" and "WEB-INF" folder.. I tried to give the path "tomcat/webapps/roots/WEB-INF" under WEB-INF Under source i gave the path to the "src" folder which ...
4
votes
1answer
1k views

Crawling using Nutch…Shows an IOException [closed]

I've started using Nutch and everything was fine until I encountered an IOException exception, $ ./nutch crawl urls -dir myCrawl -depth 2 -topN 4 cygpath: can't convert empty path solrUrl is not set, ...
0
votes
2answers
139 views

Solr's schema and how it works

Hey so I started researching about Solr and have a couple of questions on how Solr works. I know the schema defines what is stored and indexed in the Solr application. But I'm confuse as to how Solr ...
0
votes
0answers
317 views

Best open source web crawlers for commercial purpose? [closed]

I am developing a system that crawls tens of millions of webpages on the web, which will go on live..... To develop a crawler right from scratch would be an idiotic thing to do... So, I would like you ...
1
vote
1answer
339 views

Need help understanding Solr

I'm just getting started with Nutch and Solr. I ran the crawl once with just one seed URL. I ran this command: bin/nutch crawl urls -dir crawl -solr http://localhost:8983/solr/ -depth 3 -topN 5 ...
0
votes
1answer
184 views

I'm following the Nutch tutorial, and getting a “No URLs to fetch” error

Following the Apache Nutch tutorial here: As indicated in the tutorial, I've set the last line of my regex-urlfilter.txt to: +^http://([a-z0-9]*\.)*nutch.apache.org/ My nutch-site.xml file ...
0
votes
1answer
234 views

Best web crawlers for commercial purpose?

I am developing a system that crawls tens of millions of webpages, which will go on live. I would rather not develop a crawler from scratch. Which open-source web crawlers fit the following criteria: ...
1
vote
0answers
217 views

Using SearchQuerySet haystack API without django models and nutch

Morning all, This past week I have been experimenting with different search engines and indexing tools and have come across a problem. I have a django site that is all static pages. I have used nutch ...
0
votes
1answer
826 views

Running Apache Nutch on windows

I am trying to run Apache Nutch on Windows for web crawling.I have installed cygwin and set its Path .But I am getting the following exception : Exception in thread "main" java.io.IOException: Failed ...
0
votes
1answer
275 views

How to show the result of solr in jsp page instead of xml format?

i am new to solr. i want the result of solr output into jsp format or page by default it shows result in xml format. please help me.
0
votes
0answers
108 views

Nutch Parse Step Bafflingly Slow in Reduce Step [with example]

I've been completely baffled by slowness of the reduce step during parsing and will really appreciate some insights. The job is being run on hadoop and one of the reduce tasks always takes ages to ...
0
votes
0answers
216 views

Nutch SolrIndexer Job Failed but index appears in Solr

I first run the Nutch command to index my site bin/nutch crawl urls -dir crawl -depth 3 -topN 5 All seems fine there, I then add the documents to Solr with bin/nutch solrindex ...
0
votes
1answer
117 views

Nutch topN selection criterion

Does the topN threshold consider page score for the selection. If it's set to say 10, does Nutch queue up the 10 top scoring URLs on a page? Does this work through the webgraph or is it just the first ...
0
votes
1answer
37 views

Protocol used by nutch

Can somebody please tell me which protocol is used by nutch for fetching pages. I wanted to check what kind of request does nutch makes ? I used charles proxy to see the request information but sadly ...
0
votes
0answers
243 views

Writing a plugin(Indexing) for Nutch

I am writing a plugin for nutch which parses text and creates a new field depending on text. For this the plugin which I am writing implements IndexingFilter. I am following the tutorial as in here ...
0
votes
1answer
296 views

Nutch URL regex normalization of params and session IDs

Using Nutch are there any risks involved (like loops) in crawling URLs that have params like http://something.com?page=index The url-regexfilter ignores such URLs. If I remove this filter, am I ...
0
votes
1answer
713 views

Nutch does not crawl multiple sites

I'm trying to crawl multiple sites using Nutch. My seed.txt looks like this: http://1.a.b/ http://2.a.b/ and my regex-urlfilter.txt looks like this: # skip file: ftp: and mailto: urls ...
6
votes
2answers
1k views

nutch vs solr indexing

I have recently started working on nutch and I am trying to understand how it works. As far as I know Nutch is basically used to crawl the web and solr/Lucene is used to index and search. But when I ...
0
votes
1answer
82 views

Hadoop MapFile: how to transfer the writable value to its original class?

There is nutch data in Hadoop, and I get the value by the method get(key,val), but how can I transfer the writable data to its original class. My code is paste bellow: Text key = new Text(); ...
2
votes
2answers
107 views

Configure Nutch to only index specific filetypes in Solr

I am looking for a way to configure Nutch to crawl the web, but only index certain types of files (XML to be specific) into Solr. I'm pretty sure a custom plugin would do the job, probably based on ...
0
votes
1answer
179 views

Solr admin shows nothing (nutch)

I've successfully created a Solr index crawling a few pages using nutch. Querying the index using Luke I get the expected results (default field 'content'). However, when I try using the solr/admin ...
1
vote
2answers
62 views

Run nutch in OSGI environment

I am new to OSGI framwork So this question might seem silly. Can we run Apache Nutch 1.4 in OSGI framework. I want to create an OSGI bundle of nutch. I am using eclipse indigo to compile the Nutch ...
0
votes
0answers
216 views

Adding Jsoup parser to nutch

I am trying to use Jsoup as parser in nutch because I need to fetch out divs and other html tags from html page and jsoup helps a lot in selecting specific elements. So I have tried to write a plugin. ...
4
votes
1answer
672 views

Nutch: Data read and adding metadata

I recently started looking apache nutch. I could do setup and able to crawl web pages of my interest with nutch. I am not quite understanding on how to read this data. I basically want to associate ...
0
votes
1answer
116 views

nutch hadoop only one slave is crawling

I have a 3-slaves hadoop cluster and I am performing a crawl on a single website. However, only 1 slave is performing fetching (though the other slaves are still alive). Is this normal behavior if ...
0
votes
1answer
153 views

Is it possible to direct output of map-reduce to multiple Map files?

Here is the use case: I have a nutch crawldb (its a hadoop map file) containing data about urls which includes its status as visited and not-visited. I want to split it into 2 crawldb (map files) ...
0
votes
1answer
83 views

Update Nutch to fetch parent of every URL fetched

As I run Apache Nutch 1.4 crawler, I want to store some additional information. I want to store the parent of every URL. For example, I want to crawl a page a.html that has 2 anchor links to b.html ...
0
votes
2answers
604 views

Nutch Crawling Using Regex

I wanted to crawl a website but save only those web pages , which are like : Type A : http://mywebsite.com/page.html any other links like. : http://mywebsite.com/a/b/ or http://mywebsite.com/a/ or ...
0
votes
1answer
414 views

How to configure nutch 1.4 with hadoop?

When I am firing this command ./bin/hadoop dfs -put url/urls_test url/urls_test URLs are getting up correctly. But below command is showing error ./bin/nutch crawl url/urls_test -dir cr_demo ...
0
votes
1answer
124 views

Does nutch crawl over forms?

I was wondering if nutch 1.4 crawls over forms right out of the box. For example if there is a drop-down list, would it try to get all possible pages combined from the items in the drop-down list ?? ...
1
vote
1answer
549 views

How to configure nutch 1.4?

I am using this command to crawl some URLs: ./bin/nutch crawl urls/urls -dir crawl -depth 2 It is showing the following error: Could not find or load main class org.apache.nutch.crawl.Crawl How ...
0
votes
1answer
807 views

Solr: undefined field text

When running latest (05/2012) Solr based n Nutch, folowing the official tutorial by Apache, I get: HTTP ERROR 400 Problem accessing /solr/select. Reason: undefined field text
0
votes
1answer
71 views

How to configure Nutch to avoid crawling nonsense calendar webpage

I am using Nutch to index a website. I notice that Nutch has crawled some junk webpages, such as http://******/category/events/2015-11. This webpage is about the event occurring in 2015, 11. This is ...
2
votes
1answer
367 views

nutch-solr: Formatting date from web page metadata into correct Solr format

I am currently configuring nutch and solr to index web pages and their metadata. There are metadata tags containing dates in the format yyyy-mm-dd, hence they miss the required time format extension ...
0
votes
2answers
198 views

Using Nutch solrindex to index to multiple cores?

Is there parameter in the bin/nutch solrindex command to indicate which Solr core to index to?
0
votes
2answers
291 views

How to add dependency lib to nutch project

Recently I want to modify nutch's code(Fetcher.java) to save the raw html page into Hbase. I have import the project into Eclipse. But I'm not familiar with ant,ivy,maven or buildfile. How do I add ...
0
votes
0answers
236 views

Job failed when index with solr

I have integrated nutch with hadoop and ran a crawl with it. But when I want to create solrindex for the data, I got Job Failed. This is my command: $bin/nutch solrindex http://namenode:8983/solr/ ...
0
votes
1answer
385 views

How does Nutch work with Hadoop cluster?

all I'm wondering how nutch works with hadoop cluster. How does it split a job to the other nodes? How does it assure that different nodes in the cluster won't request the same url? Thanks in adv.
1
vote
1answer
186 views

Nutch Fetcher aborting with N hung threads

I am using Nutch-1.4 for crawling websites. the issue i am facing in crawling is fetcher always aborts with N hung threads. Entries in log file are, INFO fetcher.Fetcher - -activeThreads=1, ...
-1
votes
1answer
46 views

Error message nutch eclipse

I am trying to build nutch 1.4 from the source code within eclipse env. Everything is ok but I receive an error message in class org.apache.nutch.util.domain.TopLevelDomain.java that says The type ...
0
votes
1answer
218 views

Is Solr necessary to index crawled data for Nutch?

I have learnt Nutch for few days. People here help me a lot.Thank all of you. Here is the Question: I found that Nutch1.4 only contains one Indexer--solrindex. Is Solr the only way for Nutch to index ...
1
vote
1answer
81 views

Nutch: how to exclude non-English pages?

I was wondering if there is a simple mechanism to exclude pages that are non-English from the indexing process? For example, the dmoz seed urls list contains wikipedia pages in many languages and they ...
3
votes
2answers
703 views

How to read the content from Nutch index?

I'm new for Nutch. Now I can crawl and index the web pages using Nutch, but I don't know how to read the index and extract data from it. Could anyone introduce to me some useful tools to read the ...
0
votes
2answers
647 views

Find all the web pages in a domain and its subdomains

I am looking for a way to find all the web pages and sub domains in a domain. For example, in the uoregon.edu domain, I would like to find all the web pages in this domain and in all the sub domains ...
0
votes
2answers
101 views

How to resolve dependencies for custom Nutch plug-in?

I am struggling with Ivy and dependency resolution in Eclipse. I have created a custom plug-in for Nutch, which has dependencies on another project in my Eclipse workspace. Now when I build it it ...
0
votes
1answer
1k views

Nutch showing following errors, what to do

enter code here npun@nipun:~$ nutch crawl urls -dir crawl -depth 2 -topN 10 Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/nutch/crawl/Crawl Caused by: ...
1
vote
1answer
461 views

Why does Nutch only run the fetch step on one Hadoop node, when the cluster has 5 nodes total?

I'm running Nutch on a Elastic MapReduce, with 3 worker nodes. I'm using Nutch 1.4, with the default configuration it ships with (after adding a user agent). However, even though I'm crawling a list ...
0
votes
1answer
253 views

Can not compile Nutch1.4 with ant

all I'm trying to deploy Nutch1.4 to Hadoop cluster(following this page). I got some problems when compiling Nutch with ant. problem 1 When I run ant command, I got the following error: ...

1 3 4 5 6 7 10