问题描述
我们正试图将我们的工作从Hadoop 1.0.3迁移到Hadoop 2(准确地说,Hadoop 2.8.1,单节点集群)。我们使用YARN来管理我们的地图缩减工作。我们注意到的差异之一是每个映射存在两个Linux进程或减少计划执行的任务。例如,对于我们的任何reduce任务,我们可以找到这两个执行过程:
第二个过程是第一个过程的子过程。总而言之,我们发现在执行作业的过程中总体数量远远高于Hadoop 1.0.3,其中只有一个进程正在为每个映射或减少任务执行。
a)这可能是作业执行速度慢于Hadoop 1.0.3的原因吗?
b)这两个过程是预期的方式,它的一切工作?
预先感谢您的意见。
在结束检查时,您会发现
Pid 124692是/ bin / bash
Pid 124696 is / opt / java / bin / java
/ bin / bash是容器过程,封闭的环境(CPU,RAM限于一个容器)
你可以把它想象成一个虚拟机,你可以在其中运行你自己的过程。虚拟机和其中运行的进程都将具有父子关系。
请详细了解Linux容器以了解更多信息。
We are trying to migrate our jobs to Hadoop 2 (Hadoop 2.8.1, single node cluster, to be precise) from Hadoop 1.0.3. We are using YARN to manage our map-reduce jobs. One of the differences that we have noticed is the presence of two Linux processes for each map or reduce task that is planned for execution. For example, for any of our reduce tasks, we find these two executing processes:
The second process is a child of the first one. All in all, we see that the overall number of processes during our job execution is much higher than it was with Hadoop 1.0.3, where only one process was executing for each map or reduce task.
a) Could this be a reason for the job executing quite slower than it does with Hadoop 1.0.3 ?
b) Are those two processes the intended way it all works ?
Thank you in advance for your advice.
On a close check you will find
Pid 124692 is /bin/bash
Pid 124696 is /opt/java/bin/java
/bin/bash is the container process which spawns Java process within the enclosed environment (CPU , RAM restricted to a container)
You can think of this as A Virtual Machine inside which you can run your own process. Both virtual machine and the process running inside it will have a parent child relationship.
Please read about Linux container in details to know more about it .
这篇关于Hadoop 2:为什么每个映射或减少任务有两个linux进程?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!