Home > Blockchain >  Which type of containers technology apache Hadoop used?
Which type of containers technology apache Hadoop used?

Time:03-21

Does anyone know which containers technology (Docker, LXC,....) is used in apache Hadoop, especially in (HDFS) and (Mapreduce)? I know its used container technology but I can not find which one in specific.

CodePudding user response:

Out of the box, none. What YARN calls "containers", by default, are bare-metal JVM instances that are scheduled using the YARN NodeManagers.


YARN can be configured to use Docker or runC.

  • Related