Support Questions

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

How can I set the name of an Oozie action node in Hue

avatar
Explorer

Rather than using the automatically generated names that are given to action nodes i.e. shell-12ba, I would like to be able to set the name myself. Is this possible? If so how? 

1 ACCEPTED SOLUTION

avatar
Master Collaborator

Hi James,

 

Thanks for clarifying your question. It's true that there is no native functionality for this, however it is possible to change the action name in a slightly hacky way:

1. In the edit mode of your Oozie workflow click on the name of the node and note the id:

aakulov_0-1600283712980.png

2. Save and export your workflow. This will give you access to a JSON file that you can edit. 

3. In that JSON file do a search and replace for -[NODE ID]\" and replace with your desired name for the node. All of the references to the old node ID should be replaced to maintain references. Save the file.

aakulov_1-1600283965011.png

4. Import your JSON back into Hue. This will update your existing workflow file and now the generated Oozie XML will have the name for the node that you want. 

 

Hope this helps. 

 

 

Regards,

Alex

 

View solution in original post

3 REPLIES 3

avatar
Master Collaborator

Hi James,

 

You should be able to do that as follows for any action, when you define an action:

<action name="firstparallejob">

 If this solution works, please accept it as such.

 

Regards,

Alex

avatar
Explorer

Thanks Alex, I'm aware that the action name can easily be changed when writing an Oozie workflow using the raw XML. However this doesn't appear possible in the Hue workflow editor... I had hoped that I might just be able to write the XML myself in a simple text editor and then import into Hue, but from what I've found, Hue isn't capable of importing the XML.

avatar
Master Collaborator

Hi James,

 

Thanks for clarifying your question. It's true that there is no native functionality for this, however it is possible to change the action name in a slightly hacky way:

1. In the edit mode of your Oozie workflow click on the name of the node and note the id:

aakulov_0-1600283712980.png

2. Save and export your workflow. This will give you access to a JSON file that you can edit. 

3. In that JSON file do a search and replace for -[NODE ID]\" and replace with your desired name for the node. All of the references to the old node ID should be replaced to maintain references. Save the file.

aakulov_1-1600283965011.png

4. Import your JSON back into Hue. This will update your existing workflow file and now the generated Oozie XML will have the name for the node that you want. 

 

Hope this helps. 

 

 

Regards,

Alex