aws emr invalidauxserviceexception:auxservice:mapreduce_shuffle 不存在

2uluyalo  于 2021-05-31  发布在  Hadoop
关注(0)|答案(1)|浏览(368)

我在运行时基于一个用户事件启动一个emr集群,一旦任务完成集群将被终止。
然而,当我启动集群并执行任务时,我得到的错误是:
我读了一些帖子,其中建议我们需要更新namenode和datanodes中的yarn-site.xml,并重新启动yarn示例。
不知道如何在启动集群时配置它。

org.apache.hadoop.yarn.exceptions.InvalidAuxServiceException: The auxService:mapreduce_shuffle does not exist
Container launch failed for container_1523533251407_0001_01_000002 : org.apache.hadoop.yarn.exceptions.InvalidAuxServiceException: The auxService:mapreduce_shuffle does not exist
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at org.apache.hadoop.yarn.api.records.impl.pb.SerializedExceptionPBImpl.instantiateException(SerializedExceptionPBImpl.java:168)
at org.apache.hadoop.yarn.api.records.impl.pb.SerializedExceptionPBImpl.deSerialize(SerializedExceptionPBImpl.java:106)
at org.apache.hadoop.mapreduce.v2.app.launcher.ContainerLauncherImpl$Container.launch(ContainerLauncherImpl.java:155)
at org.apache.hadoop.mapreduce.v2.app.launcher.ContainerLauncherImpl$EventProcessor.run(ContainerLauncherImpl.java:390)
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)

谢谢
回答:
以下是我在代码中添加的解决问题的方法:

Map<String,String> yarnProperties = new HashMap<String,String>();
        yarnProperties.put("yarn.nodemanager.aux-services","mapreduce_shuffle");
        yarnProperties.put("yarn.nodemanager.aux-services.mapreduce_shuffle.class","org.apache.hadoop.mapred.ShuffleHandler");

        Configuration yarnConfig = new Configuration()
                .withClassification("yarn-env")
                .withProperties(yarnProperties);
RunJobFlowRequest request = new RunJobFlowRequest()
            .withConfigurations(yarnConfig)
v6ylcynt

v6ylcynt1#

我们在yarn-site.xml中设置了一些其他属性。
如果尝试使用aws cli创建,可以使用
--configurations'配置的json文件'
如果您试图通过java创建

Application hive = new Application().withName("Hive");

Map<String,String> hiveProperties = new HashMap<String,String>();
    hiveProperties.put("hive.join.emit.interval","1000");
    hiveProperties.put("hive.merge.mapfiles","true");

Configuration myHiveConfig = new Configuration()
    .withClassification("hive-site")
    .withProperties(hiveProperties);

那么你可以称为

RunJobFlowRequest request = new RunJobFlowRequest()
    .withName("Create cluster with ReleaseLabel")
    .withReleaseLabel("emr-5.13.0")
    .withApplications(hive)
    .withConfigurations(myHiveConfig)

对于另一个问题:-
您需要以上述方式添加这两个属性,然后创建cluster:-

<configuration>
  <property>
    <name>yarn.nodemanager.aux-services</name>
    <value>mapreduce_shuffle</value>
  </property>
  <property>
    <name>yarn.nodemanager.aux-services.mapreduce_shuffle.class</name>
    <value>org.apache.hadoop.mapred.ShuffleHandler</value>
  </property>
</configuration>

相关问题