2017-12-01 13 views
1

私はhadoopを自分のVMwareにインストールし、jarファイルのページランクを設計しました。次のコマンドを実行します。実行時にhadoopページランクエラーが発生する

hadoop jar PageRank-1.0.0.jar PageRankDriver init input output 2、次のエラーが発生します。

Failing this attempt.Diagnostics: [2017-12-01 12:55:58.278]Exception from container-launch. 
Container id: container_1512069161738_0011_02_000001 
Exit code: 1 
Stack trace: ExitCodeException exitCode=1: 
     at org.apache.hadoop.util.Shell.runCommand(Shell.java:994) 
     at org.apache.hadoop.util.Shell.run(Shell.java:887) 
     at org.apache.hadoop.util.Shell$ShellCommandExecutor.execute(Shell.java:1212) 
     at org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor.launchContainer(DefaultContainerExecutor.java:295) 
     at org.apache.hadoop.yarn.server.nodemanager.containermanager.launcher.ContainerLaunch.launchContainer(ContainerLaunch.java:457) 
     at org.apache.hadoop.yarn.server.nodemanager.containermanager.launcher.ContainerLaunch.call(ContainerLaunch.java:277) 
     at org.apache.hadoop.yarn.server.nodemanager.containermanager.launcher.ContainerLaunch.call(ContainerLaunch.java:90) 
     at java.util.concurrent.FutureTask.run(FutureTask.java:266) 
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) 
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) 
     at java.lang.Thread.run(Thread.java:748) 

[2017-12-01 12:55:58.278] 
[2017-12-01 12:55:58.279]Container exited with a non-zero exit code 1. Last 4096 bytes of stderr : 
Error: Could not find or load main class org.apache.hadoop.mapreduce.v2.app.MRAppMaster 

Please check whether your etc/hadoop/mapred-site.xml contains the below configuration: 
<property> 
    <name>yarn.app.mapreduce.am.env</name> 
    <value>HADOOP_MAPRED_HOME=${full path of your hadoop distribution directory}</value> 
</property> 
<property> 
    <name>mapreduce.map.env</name> 
    <value>HADOOP_MAPRED_HOME=${full path of your hadoop distribution directory}</value> 
</property> 
<property> 
    <name>mapreduce.reduce.e nv</name> 
    <value>HADOOP_MAPRED_HOME=${full path of your hadoop distribution directory}</value> 
</property> 
[2017-12-01 12:55:58.279] 
[2017-12-01 12:55:58.279]Container exited with a non-zero exit code 1. Last 4096 bytes of stderr : 
Error: Could not find or load main class org.apache.hadoop.mapreduce.v2.app.MRAppMaster 

Please check whether your etc/hadoop/mapred-site.xml contains the below configuration: 
<property> 
    <name>yarn.app.mapreduce.am.env</name> 
    <value>HADOOP_MAPRED_HOME=${full path of your hadoop distribution directory}</value> 
</property> 
<property> 
    <name>mapreduce.map.env</name> 
    <value>HADOOP_MAPRED_HOME=${full path of your hadoop distribution directory}</value> 
</property> 
<property> 
    <name>mapreduce.reduce.e nv</name> 
    <value>HADOOP_MAPRED_HOME=${full path of your hadoop distribution directory}</value> 
</property> 
[2017-12-01 12:55:58.279] 
For more detailed output, check the application tracking page: http://number9.cs.stevens.edu:8088/cluster/app/application_1512069161738_0011 Then click on links to logs of each attempt. 
. Failing the application. 
2017-12-01 12:55:59,219 INFO mapreduce.Job: Counters: 0 
Init Job Error 

どのようにすればこの問題を解決できますか?

答えて

1

<configuration> 
    <property> 
     <name>mapreduce.framework.name</name> 
     <value>yarn</value> 
    </property> 
    <property> 
     <name>yarn.app.mapreduce.am.env</name> 
     <value>HADOOP_MAPRED_HOME=${HADOOP_HOME}</value> 
    </property> 
    <property> 
     <name>mapreduce.map.env</name> 
     <value>HADOOP_MAPRED_HOME=${HADOOP_HOME}</value> 
    </property> 
    <property> 
     <name>mapreduce.reduce.env</name> 
     <value>HADOOP_MAPRED_HOME=${HADOOP_HOME}</value> 
    </property> 
</configuration> 
以下のように mapred-site.xmlでの設定変更を行います
関連する問題