On Sun, Nov 15, 2009 at 2:45 AM, prashant ullegaddi
<prashullega...@gmail.com> wrote:

> -activeThreads=0
> Exception in thread "main" java.io.IOException: Job failed!
>    at org.apache.hadoop.mapred.JobClient.runJob(JobClient.java:1232)
>    at org.apache.nutch.fetcher.Fetcher.fetch(Fetcher.java:969)
>    at org.apache.nutch.crawl.Crawl.main(Crawl.java:122)

When that happened to me, it meant that the temporary hadoop files had
filled up the /tmp file system.  I had to configure hadoop to put its
files somewhere else by putting the following in conf/hadoop-site.xml

<configuration>

<property>
 <name>hadoop.tmp.dir</name>
 <value>/var/tmp</value>
</property>

</configuration>

-- 
http://www.linkedin.com/in/paultomblin
http://careers.stackoverflow.com/ptomblin

Reply via email to