Why there is a mapreduce.jobtracker.address configuration on YARN?

后端 未结 2 1175
猫巷女王i
猫巷女王i 2021-01-16 00:15

YARN is the Hadoop second generation that not use the jobtracker daemon anymore, and substitute it with resource manager. But why, on mapred-site.xml hadoop 2 there is an ma

2条回答
  •  北恋
    北恋 (楼主)
    2021-01-16 00:58

    You are correct. In YARN, jobtracker no longer exists. So as part of client configuration you don't have to to specify the property mapreduce.jobtracker.address. In YARN, you should specify the property mapreduce.framework.name to yarn in the config file. Instead of setting up mapreduce.jotracker.address, you need to specify yarn.resourcemanager.address.

提交回复
热议问题