After I setup hadoop multi node cluster I did ran famous wordcount map reduce example. But I didnt get any output but freezing the task. Here What I get..
12/09/12 13:01:29 INFO input.FileInputFormat: Total input paths to process : 3
12/09/12 13:01:29 INFO util.NativeCodeLoader: Loaded the native-hadoop library
12/09/12 13:01:29 WARN snappy.LoadSnappy: Snappy native library not loaded
12/09/12 13:01:30 INFO mapred.JobClient: Running job: job_201209121300_0002
12/09/12 13:01:31 INFO mapred.JobClient: map 0% reduce 0%
12/09/12 13:01:45 INFO mapred.JobClient: map 33% reduce 0%
12/09/12 13:01:48 INFO mapred.JobClient: map 100% reduce 0%
12/09/12 13:01:54 INFO mapred.JobClient: map 100% reduce 11%
But there are no exceptions in logs in both master and slave. But in slaves task tracker following logs print continously.
2012-09-12 13:23:14,573 INFO org.apache.hadoop.mapred.TaskTracker: attempt_201209121300_0002_r_000000_0 0.11111112% reduce > copy (1 of 3 at 0.04 MB/s) >
Before this I did configure hadoop single node, run the above task and I get the successful output.
p.s :
1.I have two nodes and work as master and slave. Both ip addresses are in /etc/hosts in both nodes.
2.can ssh to each master and slave without password. (passwordless login)
3.After I run the start-dfs.sh in master it also run in the slave machine (I checked with jps)
4. Here is the tutorial that I follow.
http://www.michael-noll.com/tutorials/running-hadoop-on-ubuntu-linux-multi-node-cluster/
5.Firewall disabled in both machines.
How can I resolve this issue ?