[prev in list] [next in list] [prev in thread] [next in thread] 

List:       hadoop-user
Subject:    cgroups: Failed to initialize container executor
From:       "Soni,Mohit" <mohitsoni1989 () gmail ! com>
Date:       2014-05-30 17:19:27
Message-ID: 18FD2979-A414-4B1E-B552-D15B8BFF86CF () gmail ! com
[Download RAW message or body]

Hi
 
I am trying to use cgroups with YARN 2.4.0 single-node setup running on Ubuntu 13.10. \
It works fine if I use DefaultContainerExecutor. But, I get error when I try to use \
LinuxContainerExecutor. I referred to \
http://hadoop.apache.org/docs/r2.4.0/hadoop-project-dist/hadoop-common/SecureMode.html#LinuxContainerExecutor \
for help.  
My setup:
User: hduser
Group: hadoop

Permissions for bin directory:
hduser@host1:/usr/local/hadoop/bin$ ls -l
total 364
---Sr-s--- 1 root   hadoop  85670 May 30 00:14 container-executor
-r-------- 1 root   hadoop     97 May 30 00:52 container-executor.cfg
-rw-r--r-- 1 hduser hadoop     71 May 30 00:44 container-executor.cfg.orig
-rwxr-xr-x 1 hduser hadoop  85670 May 30 00:22 container-executor.orig
-rwxr-xr-x 1 hduser hadoop   4857 Mar 31 08:49 hadoop
-rwxr-xr-x 1 hduser hadoop   7541 Mar 31 08:49 hadoop.cmd
-rwxr-xr-x 1 hduser hadoop   8200 Mar 31 08:49 hdfs
-rwxr-xr-x 1 hduser hadoop   6162 Mar 31 08:49 hdfs.cmd
-rwxr-xr-x 1 hduser hadoop   5205 Mar 31 08:49 mapred
-rwxr-xr-x 1 hduser hadoop   5559 Mar 31 08:49 mapred.cmd
-rwxr-xr-x 1 hduser hadoop   1776 Mar 31 08:49 rcc
-rwxr-xr-x 1 hduser hadoop 108825 Mar 31 08:49 test-container-executor
-rwxr-xr-x 1 hduser hadoop   9539 Mar 31 08:49 yarn
-rwxr-xr-x 1 hduser hadoop   9988 Mar 31 08:49 yarn.cmd
 
File: container-executor.cfg
yarn.nodemanager.linux-container-executor.group=hadoop
min.user.id=1
allowed.system.users=hduser
 
File: yarn-site.xml
<?xml version="1.0"?>
<!--
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at
 
    http://www.apache.org/licenses/LICENSE-2.0
 
  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License. See accompanying LICENSE file.
-->
<configuration>
 
<!-- Site specific YARN configuration properties -->
 
<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>
 
<!-- Cgroups -->
<property>
        <description>who will execute(launch) the containers.</description>
        <name>yarn.nodemanager.container-executor.class</name>
        <value>org.apache.hadoop.yarn.server.nodemanager.LinuxContainerExecutor</value>
 </property>
<property>
        <description>The class which should help the LCE handle \
                resources.</description>
        <name>yarn.nodemanager.linux-container-executor.resources-handler.class</name>
                
        <value>org.apache.hadoop.yarn.server.nodemanager.util.CgroupsLCEResourcesHandler</value>
 </property>
<property>
        <name>yarn.nodemanager.linux-container-executor.cgroups.hierarchy</name>
        <value>/hadoop-yarn</value>
</property>
<property>
        <name>yarn.nodemanager.linux-container-executor.cgroups.mount</name>
        <value>true</value>
</property>
<property>
        <name>yarn.nodemanager.linux-container-executor.cgroups.mount-path</name>
        <value>/sys/fs/cgroup</value>
</property>
<property>
        <name>yarn.nodemanager.linux-container-executor.group</name>
        <value>hadoop</value>
</property>
 
Now, when I execute $HADOOP_INSTALL/bin/yarn nodemanager, I fails with exit code 255, \
with following stacktrace:  
14/05/30 01:10:10 INFO nodemanager.NodeManager: registered UNIX signal handlers for \
[TERM, HUP, INT] 14/05/30 01:10:11 WARN util.NativeCodeLoader: Unable to load \
native-hadoop library for your platform... using builtin-java classes where \
applicable 14/05/30 01:10:11 INFO service.AbstractService: Service NodeManager failed \
in state INITED; cause: org.apache.hadoop.yarn.exceptions.YarnRuntimeException: \
                Failed to initialize container executor
org.apache.hadoop.yarn.exceptions.YarnRuntimeException: Failed to initialize \
                container executor
        at org.apache.hadoop.yarn.server.nodemanager.NodeManager.serviceInit(NodeManager.java:144)
                
        at org.apache.hadoop.service.AbstractService.init(AbstractService.java:163)
        at org.apache.hadoop.yarn.server.nodemanager.NodeManager.initAndStartNodeManager(NodeManager.java:357)
                
        at org.apache.hadoop.yarn.server.nodemanager.NodeManager.main(NodeManager.java:404)
 Caused by: java.io.IOException: Cannot run program \
"/usr/local/hadoop/bin/container-executor": error=2, No such file or directory  at \
java.lang.ProcessBuilder.start(ProcessBuilder.java:1041)  at \
org.apache.hadoop.util.Shell.runCommand(Shell.java:448)  at \
                org.apache.hadoop.util.Shell.run(Shell.java:418)
        at org.apache.hadoop.util.Shell$ShellCommandExecutor.execute(Shell.java:650)
        at org.apache.hadoop.yarn.server.nodemanager.LinuxContainerExecutor.init(LinuxContainerExecutor.java:169)
                
        at org.apache.hadoop.yarn.server.nodemanager.NodeManager.serviceInit(NodeManager.java:142)
                
        ... 3 more
Caused by: java.io.IOException: error=2, No such file or directory
        at java.lang.UNIXProcess.forkAndExec(Native Method)
        at java.lang.UNIXProcess.<init>(UNIXProcess.java:135)
        at java.lang.ProcessImpl.start(ProcessImpl.java:130)
        at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022)
        ... 8 more
14/05/30 01:10:11 FATAL nodemanager.NodeManager: Error starting NodeManager
org.apache.hadoop.yarn.exceptions.YarnRuntimeException: Failed to initialize \
                container executor
        at org.apache.hadoop.yarn.server.nodemanager.NodeManager.serviceInit(NodeManager.java:144)
                
        at org.apache.hadoop.service.AbstractService.init(AbstractService.java:163)
        at org.apache.hadoop.yarn.server.nodemanager.NodeManager.initAndStartNodeManager(NodeManager.java:357)
                
        at org.apache.hadoop.yarn.server.nodemanager.NodeManager.main(NodeManager.java:404)
 Caused by: java.io.IOException: Cannot run program \
"/usr/local/hadoop/bin/container-executor": error=2, No such file or directory  at \
java.lang.ProcessBuilder.start(ProcessBuilder.java:1041)  at \
org.apache.hadoop.util.Shell.runCommand(Shell.java:448)  at \
                org.apache.hadoop.util.Shell.run(Shell.java:418)
        at org.apache.hadoop.util.Shell$ShellCommandExecutor.execute(Shell.java:650)
        at org.apache.hadoop.yarn.server.nodemanager.LinuxContainerExecutor.init(LinuxContainerExecutor.java:169)
                
        at org.apache.hadoop.yarn.server.nodemanager.NodeManager.serviceInit(NodeManager.java:142)
                
        ... 3 more
Caused by: java.io.IOException: error=2, No such file or directory
        at java.lang.UNIXProcess.forkAndExec(Native Method)
        at java.lang.UNIXProcess.<init>(UNIXProcess.java:135)
        at java.lang.ProcessImpl.start(ProcessImpl.java:130)
        at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022)
        ... 8 more
14/05/30 01:10:11 INFO nodemanager.NodeManager: SHUTDOWN_MSG:
 
It would be great if someone can please help me figure out what’s wrong with my \
setup.  
Thanks
Mohit


[Attachment #3 (unknown)]

<html><head><meta http-equiv="Content-Type" content="text/html \
charset=windows-1252"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: \
space; -webkit-line-break: after-white-space;"><div style="margin: 0in 0in 0.0001pt; \
font-size: 11pt; font-family: Calibri, sans-serif;">Hi<o:p></o:p></div><div \
style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, \
sans-serif;"><o:p>&nbsp;</o:p></div><div style="margin: 0in 0in 0.0001pt; font-size: \
11pt; font-family: Calibri, sans-serif;">I am trying to use cgroups with YARN 2.4.0 \
single-node setup running on Ubuntu 13.10. It works fine if I use \
DefaultContainerExecutor. But, I get error when I try to use LinuxContainerExecutor. \
I referred to&nbsp;<a \
href="http://hadoop.apache.org/docs/r2.4.0/hadoop-project-dist/hadoop-common/SecureMode.html#LinuxContainerExecutor" \
style="color: purple;">http://hadoop.apache.org/docs/r2.4.0/hadoop-project-dist/hadoop-common/SecureMode.html#LinuxContainerExecutor</a>&nbsp;for \
help.<o:p></o:p></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; \
font-family: Calibri, sans-serif;"><o:p>&nbsp;</o:p></div><div style="margin: 0in 0in \
0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;">My \
setup:<o:p></o:p></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; \
font-family: Calibri, sans-serif;">User: hduser</div><div style="margin: 0in 0in \
0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;">Group: hadoop</div><div \
style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, \
sans-serif;"><br></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; \
font-family: Calibri, sans-serif;"><b>Permissions for bin \
directory:</b><o:p></o:p></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; \
font-family: Calibri, sans-serif;"><span style="font-size: 10pt; font-family: 'Lucida \
Console';">hduser@host1:/usr/local/hadoop/bin$ ls -l<o:p></o:p></span></div><div \
style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, \
sans-serif;"><span style="font-size: 10pt; font-family: 'Lucida Console';">total \
364<o:p></o:p></span></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; \
font-family: Calibri, sans-serif;"><span style="font-size: 10pt; font-family: 'Lucida \
Console';">---Sr-s--- 1 root&nbsp;&nbsp; hadoop&nbsp; 85670 May 30 00:14&nbsp;<span \
style="color: rgb(191, 191, 191); background-color: maroon; background-position: \
initial initial; background-repeat: initial \
initial;">container-executor<o:p></o:p></span></span></div><div style="margin: 0in \
0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span \
style="font-size: 10pt; font-family: 'Lucida Console';">-r-------- 1 root&nbsp;&nbsp; \
hadoop&nbsp;&nbsp;&nbsp;&nbsp; 97 May 30 00:52 \
container-executor.cfg<o:p></o:p></span></div><div style="margin: 0in 0in 0.0001pt; \
font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: 10pt; \
font-family: 'Lucida Console';">-rw-r--r-- 1 hduser hadoop&nbsp;&nbsp;&nbsp;&nbsp; 71 \
May 30 00:44 container-executor.cfg.orig<o:p></o:p></span></div><div style="margin: \
0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span \
style="font-size: 10pt; font-family: 'Lucida Console';">-rwxr-xr-x 1 hduser \
hadoop&nbsp; 85670 May 30 00:22&nbsp;<span style="color: rgb(64, 255, \
64);">container-executor.orig<o:p></o:p></span></span></div><div style="margin: 0in \
0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span \
style="font-size: 10pt; font-family: 'Lucida Console';">-rwxr-xr-x 1 hduser \
hadoop&nbsp;&nbsp; 4857 Mar 31 08:49&nbsp;<span style="color: rgb(64, 255, \
64);">hadoop<o:p></o:p></span></span></div><div style="margin: 0in 0in 0.0001pt; \
font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: 10pt; \
font-family: 'Lucida Console';">-rwxr-xr-x 1 hduser hadoop&nbsp;&nbsp; 7541 Mar 31 \
08:49&nbsp;<span style="color: rgb(64, 255, \
64);">hadoop.cmd<o:p></o:p></span></span></div><div style="margin: 0in 0in 0.0001pt; \
font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: 10pt; \
font-family: 'Lucida Console';">-rwxr-xr-x 1 hduser hadoop&nbsp;&nbsp; 8200 Mar 31 \
08:49&nbsp;<span style="color: rgb(64, 255, \
64);">hdfs<o:p></o:p></span></span></div><div style="margin: 0in 0in 0.0001pt; \
font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: 10pt; \
font-family: 'Lucida Console';">-rwxr-xr-x 1 hduser hadoop&nbsp;&nbsp; 6162 Mar 31 \
08:49&nbsp;<span style="color: rgb(64, 255, \
64);">hdfs.cmd<o:p></o:p></span></span></div><div style="margin: 0in 0in 0.0001pt; \
font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: 10pt; \
font-family: 'Lucida Console';">-rwxr-xr-x 1 hduser hadoop&nbsp;&nbsp; 5205 Mar 31 \
08:49&nbsp;<span style="color: rgb(64, 255, \
64);">mapred<o:p></o:p></span></span></div><div style="margin: 0in 0in 0.0001pt; \
font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: 10pt; \
font-family: 'Lucida Console';">-rwxr-xr-x 1 hduser hadoop&nbsp;&nbsp; 5559 Mar 31 \
08:49&nbsp;<span style="color: rgb(64, 255, \
64);">mapred.cmd<o:p></o:p></span></span></div><div style="margin: 0in 0in 0.0001pt; \
font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: 10pt; \
font-family: 'Lucida Console';">-rwxr-xr-x 1 hduser hadoop&nbsp;&nbsp; 1776 Mar 31 \
08:49&nbsp;<span style="color: rgb(64, 255, \
64);">rcc<o:p></o:p></span></span></div><div style="margin: 0in 0in 0.0001pt; \
font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: 10pt; \
font-family: 'Lucida Console';">-rwxr-xr-x 1 hduser hadoop 108825 Mar 31 \
08:49&nbsp;<span style="color: rgb(64, 255, \
64);">test-container-executor<o:p></o:p></span></span></div><div style="margin: 0in \
0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span \
style="font-size: 10pt; font-family: 'Lucida Console';">-rwxr-xr-x 1 hduser \
hadoop&nbsp;&nbsp; 9539 Mar 31 08:49&nbsp;<span style="color: rgb(64, 255, \
64);">yarn<o:p></o:p></span></span></div><div style="margin: 0in 0in 0.0001pt; \
font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: 10pt; \
font-family: 'Lucida Console';">-rwxr-xr-x 1 hduser hadoop&nbsp;&nbsp; 9988 Mar 31 \
08:49&nbsp;<span style="color: rgb(64, 255, \
64);">yarn.cmd<o:p></o:p></span></span></div><div style="margin: 0in 0in 0.0001pt; \
font-size: 11pt; font-family: Calibri, sans-serif;"><o:p>&nbsp;</o:p></div><div \
style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, \
sans-serif;"><b>File: container-executor.cfg<o:p></o:p></b></div><div style="margin: \
0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span \
style="font-size: 10pt; font-family: 'Lucida \
Console';">yarn.nodemanager.linux-container-executor.group=hadoop<o:p></o:p></span></div><div \
style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, \
sans-serif;"><span style="font-size: 10pt; font-family: 'Lucida \
Console';">min.user.id=1<o:p></o:p></span></div><div style="margin: 0in 0in 0.0001pt; \
font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: 10pt; \
font-family: 'Lucida \
Console';">allowed.system.users=hduser<o:p></o:p></span></div><div style="margin: 0in \
0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span \
style="font-size: 10pt; font-family: 'Lucida Console';">&nbsp;</span></div><div \
style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, \
sans-serif;"><b><span style="font-size: 10pt; font-family: 'Lucida Console';">File: \
yarn-site.xml<o:p></o:p></span></b></div><div style="margin: 0in 0in 0.0001pt; \
font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: 10pt; \
font-family: 'Lucida Console';">&lt;?xml \
version="1.0"?&gt;<o:p></o:p></span></div><div style="margin: 0in 0in 0.0001pt; \
font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: 10pt; \
font-family: 'Lucida Console';">&lt;!--<o:p></o:p></span></div><div style="margin: \
0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span \
style="font-size: 10pt; font-family: 'Lucida Console';">&nbsp; Licensed under the \
Apache License, Version 2.0 (the "License");<o:p></o:p></span></div><div \
style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, \
sans-serif;"><span style="font-size: 10pt; font-family: 'Lucida Console';">&nbsp; you \
may not use this file except in compliance with the \
License.<o:p></o:p></span></div><div style="margin: 0in 0in 0.0001pt; font-size: \
11pt; font-family: Calibri, sans-serif;"><span style="font-size: 10pt; font-family: \
'Lucida Console';">&nbsp; You may obtain a copy of the License \
at<o:p></o:p></span></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; \
font-family: Calibri, sans-serif;"><span style="font-size: 10pt; font-family: 'Lucida \
Console';">&nbsp;</span></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; \
font-family: Calibri, sans-serif;"><span style="font-size: 10pt; font-family: 'Lucida \
Console';">&nbsp;&nbsp;&nbsp;&nbsp;<a \
href="http://www.apache.org/licenses/LICENSE-2.0" style="color: \
purple;">http://www.apache.org/licenses/LICENSE-2.0</a><o:p></o:p></span></div><div \
style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, \
sans-serif;"><span style="font-size: 10pt; font-family: 'Lucida \
Console';">&nbsp;</span></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; \
font-family: Calibri, sans-serif;"><span style="font-size: 10pt; font-family: 'Lucida \
Console';">&nbsp; Unless required by applicable law or agreed to in writing, \
software<o:p></o:p></span></div><div style="margin: 0in 0in 0.0001pt; font-size: \
11pt; font-family: Calibri, sans-serif;"><span style="font-size: 10pt; font-family: \
'Lucida Console';">&nbsp; distributed under the License is distributed on an "AS IS" \
BASIS,<o:p></o:p></span></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; \
font-family: Calibri, sans-serif;"><span style="font-size: 10pt; font-family: 'Lucida \
Console';">&nbsp; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or \
implied.<o:p></o:p></span></div><div style="margin: 0in 0in 0.0001pt; font-size: \
11pt; font-family: Calibri, sans-serif;"><span style="font-size: 10pt; font-family: \
'Lucida Console';">&nbsp; See the License for the specific language governing \
permissions and<o:p></o:p></span></div><div style="margin: 0in 0in 0.0001pt; \
font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: 10pt; \
font-family: 'Lucida Console';">&nbsp; limitations under the License. See \
accompanying LICENSE file.<o:p></o:p></span></div><div style="margin: 0in 0in \
0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: \
10pt; font-family: 'Lucida Console';">--&gt;<o:p></o:p></span></div><div \
style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, \
sans-serif;"><span style="font-size: 10pt; font-family: 'Lucida \
Console';">&lt;configuration&gt;<o:p></o:p></span></div><div style="margin: 0in 0in \
0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: \
10pt; font-family: 'Lucida Console';">&nbsp;</span></div><div style="margin: 0in 0in \
0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: \
10pt; font-family: 'Lucida Console';">&lt;!-- Site specific YARN configuration \
properties --&gt;<o:p></o:p></span></div><div style="margin: 0in 0in 0.0001pt; \
font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: 10pt; \
font-family: 'Lucida Console';">&nbsp;</span></div><div style="margin: 0in 0in \
0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: \
10pt; font-family: 'Lucida Console';">&lt;property&gt;<o:p></o:p></span></div><div \
style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, \
sans-serif;"><span style="font-size: 10pt; font-family: 'Lucida \
Console';">&nbsp;&nbsp; \
&lt;name&gt;yarn.nodemanager.aux-services&lt;/name&gt;<o:p></o:p></span></div><div \
style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, \
sans-serif;"><span style="font-size: 10pt; font-family: 'Lucida \
Console';">&nbsp;&nbsp; \
&lt;value&gt;mapreduce_shuffle&lt;/value&gt;<o:p></o:p></span></div><div \
style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, \
sans-serif;"><span style="font-size: 10pt; font-family: 'Lucida \
Console';">&lt;/property&gt;<o:p></o:p></span></div><div style="margin: 0in 0in \
0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: \
10pt; font-family: 'Lucida Console';">&lt;property&gt;<o:p></o:p></span></div><div \
style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, \
sans-serif;"><span style="font-size: 10pt; font-family: 'Lucida \
Console';">&nbsp;&nbsp; \
&lt;name&gt;yarn.nodemanager.aux-services.mapreduce.shuffle.class&lt;/name&gt;<o:p></o:p></span></div><div \
style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, \
sans-serif;"><span style="font-size: 10pt; font-family: 'Lucida \
Console';">&nbsp;&nbsp; \
&lt;value&gt;org.apache.hadoop.mapred.ShuffleHandler&lt;/value&gt;<o:p></o:p></span></div><div \
style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, \
sans-serif;"><span style="font-size: 10pt; font-family: 'Lucida \
Console';">&lt;/property&gt;<o:p></o:p></span></div><div style="margin: 0in 0in \
0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: \
10pt; font-family: 'Lucida Console';">&nbsp;</span></div><div style="margin: 0in 0in \
0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: \
10pt; font-family: 'Lucida Console';">&lt;!-- Cgroups \
--&gt;<o:p></o:p></span></div><div style="margin: 0in 0in 0.0001pt; font-size: 11pt; \
font-family: Calibri, sans-serif;"><span style="font-size: 10pt; font-family: 'Lucida \
Console';">&lt;property&gt;<o:p></o:p></span></div><div style="margin: 0in 0in \
0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: \
10pt; font-family: 'Lucida Console';">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \
&lt;description&gt;who will execute(launch) the \
containers.&lt;/description&gt;<o:p></o:p></span></div><div style="margin: 0in 0in \
0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: \
10pt; font-family: 'Lucida Console';">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \
&lt;name&gt;yarn.nodemanager.container-executor.class&lt;/name&gt;<o:p></o:p></span></div><div \
style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, \
sans-serif;"><span style="font-size: 10pt; font-family: 'Lucida \
Console';">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \
&lt;value&gt;org.apache.hadoop.yarn.server.nodemanager.LinuxContainerExecutor&lt;/value&gt;<o:p></o:p></span></div><div \
style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, \
sans-serif;"><span style="font-size: 10pt; font-family: 'Lucida \
Console';">&lt;/property&gt;<o:p></o:p></span></div><div style="margin: 0in 0in \
0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: \
10pt; font-family: 'Lucida Console';">&lt;property&gt;<o:p></o:p></span></div><div \
style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, \
sans-serif;"><span style="font-size: 10pt; font-family: 'Lucida \



[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic