Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

Oozie restarts Yarn and HDFS in the process of reinstalling it.

avatar
Expert Contributor

I just reinstalled oozie on HDP 2.4. I am not clear why the process needs to restart YARN and HDFS. Any clue as to why oozie restarted the whole cluster?

1 ACCEPTED SOLUTION

avatar
Master Guru

The oozie installation makes changes to the core-site.xml. Specifically the oozie user. needs to be able to impersonate other users so he can kick off a job as the user who owns the oozie flow. HDFS allows you to configure these powerful users in the proxyuser settings. So to enable that you need to restart HDFS and yarn.

hadoop.proxyuser.oozie.groups

hadoop.proxyuser.oozie.hosts

View solution in original post

2 REPLIES 2

avatar
Master Guru

The oozie installation makes changes to the core-site.xml. Specifically the oozie user. needs to be able to impersonate other users so he can kick off a job as the user who owns the oozie flow. HDFS allows you to configure these powerful users in the proxyuser settings. So to enable that you need to restart HDFS and yarn.

hadoop.proxyuser.oozie.groups

hadoop.proxyuser.oozie.hosts

avatar
Expert Contributor

Thank you @Benjamin Leonhardi