Created 07-05-2016 02:03 PM
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?
Created 07-05-2016 02:23 PM
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
Created 07-05-2016 02:23 PM
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
Created 07-06-2016 04:54 AM
Thank you @Benjamin Leonhardi