Meh*_*ban 4 java hadoop mapreduce hadoop-yarn
我试图在Hadoop 2.2.0集群上运行wordcount示例.由于此异常,许多地图都失败了:
2014-01-07 05:07:12,544 WARN [main] org.apache.hadoop.mapred.YarnChild: Exception running child : java.net.ConnectException: Call From slave2-machine/127.0.1.1 to slave2-machine:49222 failed on connection exception: java.net.ConnectException: Connection refused; For more details see: http://wiki.apache.org/hadoop/ConnectionRefused
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
at org.apache.hadoop.net.NetUtils.wrapWithMessage(NetUtils.java:783)
at org.apache.hadoop.net.NetUtils.wrapException(NetUtils.java:730)
at org.apache.hadoop.ipc.Client.call(Client.java:1351)
at org.apache.hadoop.ipc.Client.call(Client.java:1300)
at org.apache.hadoop.ipc.WritableRpcEngine$Invoker.invoke(WritableRpcEngine.java:231)
at com.sun.proxy.$Proxy6.getTask(Unknown Source)
at org.apache.hadoop.mapred.YarnChild.main(YarnChild.java:133)
Caused by: java.net.ConnectException: Connection refused
at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:708)
at org.apache.hadoop.net.SocketIOWithTimeout.connect(SocketIOWithTimeout.java:206)
at org.apache.hadoop.net.NetUtils.connect(NetUtils.java:529)
at org.apache.hadoop.net.NetUtils.connect(NetUtils.java:493)
at org.apache.hadoop.ipc.Client$Connection.setupConnection(Client.java:547)
at org.apache.hadoop.ipc.Client$Connection.setupIOstreams(Client.java:642)
at org.apache.hadoop.ipc.Client$Connection.access$2600(Client.java:314)
at org.apache.hadoop.ipc.Client.getConnection(Client.java:1399)
at org.apache.hadoop.ipc.Client.call(Client.java:1318)
... 4 more
Run Code Online (Sandbox Code Playgroud)
每次运行作业时,有问题的端口都会被更改,但map任务仍然失败.我不知道哪个进程应该监听该端口.我也尝试netstat -ntlp在运行期间跟踪输出,没有进程从不收听端口.
更新:/etc/hosts主节点的内容是这样的:
127.0.0.1 localhost
127.0.1.1 master-machine
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
192.168.1.101 slave1 slave1-machine
192.168.1.102 slave2 slave2-machine
192.168.1.1 master
Run Code Online (Sandbox Code Playgroud)
而对于slave1是:
127.0.0.1 localhost
127.0.1.1 slave1-machine
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
192.168.1.1 master
192.168.1.101 slave1
192.168.1.102 slave2 slave2-machine
Run Code Online (Sandbox Code Playgroud)
对于slave2来说,它就像slave1一样,我认为你可以猜到.最后,yarn/hadoop/etc/hadoop/slaves主人的内容是:
slave1
slave2
Run Code Online (Sandbox Code Playgroud)
1.检查hadoop节点是否可以互相ssh.2.检查所有配置文件中hadoop守护程序的地址和端口是否相同.3.检查所有节点的/ etc/hosts.这是一个有用的链接,用于检查您是否正确启动了群集: 群集设置
我知道了!你的/ etc/hosts不正确.你应该删除127.0.1.1行.我的意思是他们应该是这样的:
127.0.0.1 localhost
192.168.1.101 master
192.168.1.103 slave1
192.168.1.104 slave2
192.168.1.105 slave3
Run Code Online (Sandbox Code Playgroud)
和像这样的所有奴隶的复制粘贴.此外,奴隶也应该能够相互厮守.