I am trying to learn YARN. But I have hit a roadblock. I have some questions.
For every application, the data nodes must have a container each. But, are these containers created on their own, while running an application or do we need to create them?
In dockers, you can access the containers, which behave as separate machines themselves. Can we access the containers similar way?
In dockers, a container cannot see outside the container and behaves as a system of its own due to which it has container process id and from the host machine it has a process id as well. In other words, the containers are isolated from the other processes. Is there a similar concept in YARN as well?
Thanks in Advance!!! :)