- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
Created on 02-15-2016 12:51 PM - edited 08-17-2019 01:10 PM
Step by step guide - Shell action in oozie workflow via Hue
Step1: Create a sample shell script and upload it to hdfs
[root@sandbox shell]# cat ~/sample.sh #!/bin/bash echo "`date` hi" > /tmp/output
hadoop fs -put sample.sh /user/hue/oozie/workspaces/
[root@sandbox shell]# hadoop fs -ls /user/hue/oozie/workspaces/ -rw-r--r-- 3 root hdfs 44 2016-02-15 10:26 /user/hue/oozie/workspaces/sample.sh
Step 2: Login to Hue Web UI and select Oozie editor/dashboard
Step3: Goto "Workflows" tab and click on "Create" button
Step 4: Fill in the required details and click on save button
Step 5: Drag shell action between start and end phase
Step 6: Fill in the required details about shell action and click on "Done" button
Step 7: Submit your workflow
You will see that your job is in progress
Output 1
Output 2
Created on 10-28-2019 04:03 PM
- Mark as Read
- Mark as New
- Bookmark
- Permalink
- Report Inappropriate Content
Hi @KuldeepK ,
I am trying to pass the dynamic parameter values from the shell scripts.
And I am unable to do that.
IF you have tried can you please let me know how to do that. I tried in the CLI it works fine with the XML code. But I am trying to use the hue editor to design the oozie workflows I am unable to pass the parameters from the shell script