Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Is it possible to configure Oozie job to run on a specific cluster VM?

avatar

Dear all,

I am working on a cluster with several VM and I need to run some pyspark code through Oozie periodically on a specific cluster machine, however I am not able to find a configuration that allows me to do that.

My workarround so far is to run a ssh client session with oozie that will spark-submit the script. Is this the only way?

Thanks in advance

1 ACCEPTED SOLUTION

avatar
Contributor

Actually you are not able to force the oozie action running in a certain node unless you are using ssh action. Once the Oozie submit the action to Yarn, Yarn will running the job in one of the NodeManger host.

View solution in original post

2 REPLIES 2

avatar
Contributor

Actually you are not able to force the oozie action running in a certain node unless you are using ssh action. Once the Oozie submit the action to Yarn, Yarn will running the job in one of the NodeManger host.

avatar

I will then keep it working with the ssh session.

Thank you very much for your feedback.