I want to ask, in hadoop yarn both on yarn-site.xml and mapred-site.xml there are property like minimum and maximum memory or vcore. I'm little bit confuse, actually in real how much memory and vcore allocated because on configuration we only write minimum and maximum not the actual size.
If I have memory 16 GB and 4 vcore And the configuration like this :
yarn.scheduler.minimum-allocation-mb = 1024
yarn.scheduler.maximum-allocation-mb = 8192
yarn.scheduler.minimum-allocation-vcores = 1
yarn.scheduler.maximum-allocation-vcores = 32
yarn.nodemanager.resource.memory-mb = 8192
yarn.nodemanager.resource.cpu-vcores = 8
So actually, how much memory, and vcore that my computer allocated for a one container?
That's all, thans a lot