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.
0
votes
1answer
2k views
configuring nutch regex-normalize.xml
I am using the Java-based Nutch web-search software. In order to prevent duplicate (url) results from being returned in my search query results, I am trying to remove (a.k.a. normalize) the ...
0
votes
2answers
28 views
how to switch off / on indexing in a web page
I'm using Nutch 1.6 and Solr 4.3 on Ubuntu Server 12.04
I would like to switch on and off content indexing. Is there a way to specify this behaviour in my HTML pages so that Solr can behave ...
0
votes
1answer
63 views
Nutch - crawl domain first
I am new to Nutch and have very and I try to make it do some specific crawling, i.e. I want it to first go e.g 3 levels deep withing one specific domain(e.g. wikipedia) - that part can be achieved by ...
0
votes
3answers
98 views
Extracting HTML meta tags in Nutch 2.x and having Solr 4 index it
I am using Nutch 2.0 to crawl some websites but I do not see HTML meta tags like title, description are extracted and stored in MySQL database. Any idea how can I get it work?
Thanks
Arash
0
votes
3answers
69 views
Solr search - how to prevent duplicates from location hash
I'm getting results back from a crawled internal site. The problem is I'm getting multiple results because of the use of location hashes in the code:
http://site.com/en/personal/refunds.html
...
0
votes
1answer
954 views
Insufficient space for shared memory file when i try to run nutch generate command
I have been running nutch crawling commands for the passed 3 weeks and now i get the below error when i try to run any nutch command
Java HotSpot(TM) 64-Bit Server VM warning: Insufficient space for ...
0
votes
1answer
58 views
Parsing XML Feeds
I want to parse RSS feeds of sites and want to fetch the content ( e.g article) and want to put them into the database. Later i also want to index them based on the search keywords. Can anyone please ...
0
votes
3answers
73 views
Updating Solr Field Value
is there any possibility to update a value of a Solr-Field without reindexing the whole document?
0
votes
1answer
518 views
Information on Nutch , Hadoop , Solr, MapReduce and Mahout
PS: Correct me if I am wrong in any line
I am building a search engine with Nutch and Solr.
I know by using Solr, I can enhance the efficiency of Searching- let Nutch do the crawling alone of 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
1answer
165 views
What the outputs exactly are when integrating Nutch1.4 and Solr?
When i integrating Nutch1.4 and solr, i notice there are two groups of outputs there.
I think the workflow may like this in my site:
1、 Nutch-1.4 crawls the websites and generates three folders : ...
0
votes
2answers
206 views
limit the number of records produced by all reducers collectively
Here is the use case:
input urls are read by maps and later emitted post some filtering. Then partitioners partition them based on their hostname.
I have a global limit over the output urls after ...
0
votes
2answers
148 views
Search implementation on classified site
I am presently working on a classified site which is developed in PHP. I want to implement two types of search in our site:
Search from our own site
Search the web.
I was about to implement ...
0
votes
1answer
242 views
Apache nutch: Manipulating the DOM before parsing
I want to remove specific elements from the page response, before it is handed down to nutch.
Specifically, I want to mark parts of my pages with i.e.
<div class="noindex">I shall not be ...
0
votes
3answers
553 views
Malformed URL: '', skipping (java.net.MalformedURLException
i crawl sites with nutch 1.3. i see this exception in my log when nutch crawl my sites:
Malformed URL: '', skipping (java.net.MalformedURLException: no protocol:
at ...
0
votes
1answer
551 views
Nutch 1.4 integration with Solr 3.5 http.agent.name property
I have been trying to setup Nutch with Solr, but getting the following exception
Fetcher: No agents listed in 'http.agent.name' property.
Exception in thread "main" ...
0
votes
2answers
438 views
how reading nutch generated content data on the segment folder using java
I am trying to read the content data inside the segment folder. I think the content data file is written in a custom format
I experimented with nutch's Content class, but it does not recognize the ...
0
votes
2answers
418 views
Nutch .Net implementation
We are building an enterprise search application and we use Lucene.net for indexing. We are looking to have a crawler.Is there a .Net implementation of Nutch - Web crawler? or is there any ongoing ...
0
votes
1answer
601 views
Nutch 1.2 - Why won't nutch crawl url with query strings?
I'm new to Nutch and not really sure what is going on here. I run nutch and it crawl my website, but it seems to ignore URLs that contain query strings. I've commented out the filter in the ...
0
votes
2answers
220 views
nutch crawler is crawling ' as â€
nutch crawler is crawling let's as Let’s y??? is there is any setting to change the this charset..
0
votes
1answer
34 views
Sites are crawled even when the URL is removed from seed.txt (Nutch 2.1)
I performed a successful crawl with url-1 in seed.txt and I could see the crawled data in MySQL database. Now when I tried to perform another fresh crawl by replacing url-1 with url-2 in seed.txt, the ...
0
votes
1answer
65 views
Nutch crawl no error , but result is nothing
I try to crawl some urls with nutch 2.1 as follows.
bin/nutch crawl urls -dir crawl -depth 3 -topN 5
http://wiki.apache.org/nutch/NutchTutorial
There is no error , but undermentioned folders don't ...
0
votes
1answer
153 views
nutch to extract only pdf files
Is there any way to perform a urlfilter from level 1-5 and a different urlfilter from 5 onwards. I need to extract pdf files which will be only after a given level (just to experiment).
The pdf files ...
0
votes
1answer
53 views
Is there anyway to log the list of urls 'ignored' in Nutch crawl?
I am using Nutch to crawl a list of URLS specified in the seed file with depth 100 and topN 10,000 to ensure a full crawl. Also, I am trying to ignore urls with repeated strings in their path using ...
0
votes
1answer
79 views
Apache Nutch at Amazon Web Services or Local
I want to learn Apache Nutch and I have an account at Amazon Web Services (AWS). I have three machines at AWS and one of them is micro sized, other one is small and the other one is medium. I want to ...
0
votes
1answer
43 views
How to range query the document from 20 to 40?
I am wondering how to query the index and only get the result from 20 to 40, skip the first 20 results, for exampe, any API supports this operation?
I only find the TopDocs search(Query query, int ...
0
votes
2answers
75 views
How to config Nutch to crawl only the URLs in seeklist? (no crawl back need)
I have a url seedlist contains more than 100000 urls. I know that nutch will crawl not only the urls in the seedlist but also any url links found inside the websites. However, I would like to know is ...
0
votes
1answer
312 views
Nutch 2.1 (HBase, SOLR) with Amazon Web Services
I experienced Nutch 2.1 locally without any difficulty. I have also tried on a 3 machine distributed cluster. We're now discussing whether to run it with Amazon Web Services or not. I do not have much ...
0
votes
1answer
438 views
Configuring Hbase standalone mode with Apache Nutch : java.lang.IllegalArgumentException: Not a host:port pair
I got the following error while I running the below command in apache Nutch 2.1 and hbase 0.94.3.
Exception in thread "main" org.apache.gora.util.GoraException: ...
0
votes
1answer
59 views
does nutch have web service API?
I know that Nutch has commands that can be used in a java project, but does Nutch have web services as API? (for example, like ElasticSearch REST API)
0
votes
1answer
145 views
Liferay + Solr + Nutch
Readme: Nutch and Solr with Liferay
I am at the exact same point now. I tried to merge the schema files or just changed the uniquekey but nothing worked. Nutch 1.4 and Solr 3.6.1 run fine when using ...
0
votes
1answer
64 views
Field mapping for HTML
I am now to Solr and Nutch. I have a question on the field mapping in solr / nutch schema.xml. I want solr/nutch pickup some keywords from one of my website. I know that the schema.xml has a field ...
0
votes
1answer
107 views
Using HtmlParseFilter with Tika parser in Nutch 1.5
What I'd like to do: write a Nutch plugin that receives the parsed data from every page crawled. I know that HtmlParseFilter does what I need for HTML pages, but I also want to process other types of ...
0
votes
1answer
583 views
nutch 1.5.1 solrindex java.io.IOException: Job failed
When i am trying to use the following command on my sles 11 system:
bin/nutch solrindex http://127.0.0.1:8983/solr/ crawl/crawldb -linkdb crawl/linkdb crawl/segments/*
I recieve this error:
...
0
votes
1answer
69 views
Configuration for running nutch unit tests in eclipse
I have nutch set up for eclipse and can run and debug to my hearts content. I can compile from eclipse or the command line, using ant. I can test all modules individually. However, when running the ...
0
votes
1answer
560 views
Nutch 2.1 cannot setup in Mac
Trying to set up the new Nutch 2.1 in local environments. With the fresh download, then "ant build". Following the document from wiki http://wiki.apache.org/nutch/Nutch2Tutorial however, it seems that ...
0
votes
1answer
98 views
Does Nutch 2.1 still support file segments?
Does Nutch 2.1 still support file segments as the data storage?
I cannot find my answer from the documentation or wiki.
0
votes
1answer
66 views
Nutch : How to separate url result from the depth : 1 and the result from depth : 2
After I run this command in nutch:
bin/nutch crawl urls -dir crawl -depth 3 -topN 5
I get a list of urls, just say 50 urls , but anyone know to separate all the url by the depth.
So I will get the ...
0
votes
1answer
42 views
Crawling redirects later with Nutch
The nutch-default.xml suggests that there is a way to save redirect destination on the first crawl and crawl them on the next crawl by setting the http.redirect.max to 0.
The first crawl finished ...
0
votes
1answer
88 views
Error in Nutch NoClassDefFoundError
I am study nutch , and I am getting this error.
I am not really sure how to fix this problem
does anyone know the way to fix this program ?
I am running nutch on the OS X mountain line..
...
0
votes
1answer
196 views
Hadoop 1.03 and Nutch 1.5 issue
I get the following error when I try to run nutch-1.5 on hadoop 1.03.
hadoop jar nutch-1.5.job org.apache.nutch.crawl.Crawl urls -dir urls -depth 1 -topN 5
**Caused by: java.io.IOException: can't ...
0
votes
1answer
94 views
Hit rate limitation in nutch
Is it possible to limit the hit rate/IP address in nutch? In other words, can I configure nutch so that it will only hit an IP x number of times per hour, etc.?
0
votes
2answers
383 views
how to parse html with nutch and index specific tag to solr?
i have installed nutch and solr for crawling a website and search in it; as you know we can index meta tags of webpages into solr with parse meta tags plugin of ...
0
votes
1answer
438 views
How does Google Enterprise Search compare with Lucene/Solr/Nutch in search relevance for searching private documents?
Does GES have an edge because it has access to vast amounts of data because of statistical analysis?
0
votes
1answer
113 views
How to crawl English site and avoid crawling other languages?
Hi I need to crawl only sites that their language is English. I know nutch can detect the langauge of sites by plugins like language detector But I need to prevent nutch from crawling the none English ...
0
votes
1answer
118 views
Nutch crawl fails when run as a background process on linux
When I run the Nutch crawl as a background process on Ubuntu in local mode, the Fetcher aborts with hung threads. The message is something like:
WARN fetcher.Fetcher - Aborting with "X" hung ...
0
votes
1answer
111 views
Nutch Parsing plugin and redirects
I am using nutch 2.0, i've created a plugin for parsing html that implements Parser and works just fine.
The problem is that i need to "parse" also pages that generate redirects (301,300), for ...
0
votes
1answer
676 views
tika installation
I integrated Tika with Solr following the instructions provided in this link
Correct me if I am wrong, it seems to me that it can index the document files(pdf,doc,audio) located on my own system ...
0
votes
2answers
457 views
error when using solr and Integrating nutch and solr(HTTP ERROR 500)
I have Linux Ubuntu 12.04 installed and I'm trying to install nutch 1.5.1 and solr 3.6.1 and integrate theme together to crawl seed urls.
I'm using This tutorial to get this work.
I followed the steps ...
0
votes
1answer
274 views
Nutch: Crawling every URL in a certain depth
My problem is to crawl every page and every document starting from a certain list of seed.
I have installed nutch and make it run with the following commmand:
bin/nutch crawl urls -solr ...
