当前位置:网站首页>Oozie 集成 Shell
Oozie 集成 Shell
2022-07-17 00:12:00 【sun_xo】
1) prepare shell case
$ cd ~/work/oozie-5.2.1
$ tree oozie/apps/shell
oozie/apps/shell
├── hello.sh
├── job.properties
└── workflow.xml$ cat oozie/apps/shell/hello.sh
#!/bin/sh
echo "my_output=Hello Oozie"$ cat oozie/apps/shell/job.properties
nameNode=hdfs://localhost:9000
resourceManager=localhost:8032
queueName=default
oozieRoot=user/${user.name}/oozie
oozie.wf.application.path=${nameNode}/${oozieRoot}/apps/shell
EXEC=hello.sh$ cat oozie/apps/shell/workflow.xml
<workflow-app xmlns="uri:oozie:workflow:1.0" name="shell-wf">
<start to="shell-node"/>
<action name="shell-node">
<shell xmlns="uri:oozie:shell-action:1.0">
<resource-manager>${resourceManager}</resource-manager>
<name-node>${nameNode}</name-node>
<configuration>
<property>
<name>mapred.job.queue.name</name>
<value>${queueName}</value>
</property>
</configuration>
<exec>${EXEC}</exec>
<file>${nameNode}/${oozieRoot}/apps/shell/${EXEC}#${EXEC}</file>
<capture-output/>
</shell>
<ok to="check-output"/>
<error to="fail"/>
</action>
<decision name="check-output">
<switch>
<case to="end">
${wf:actionData('shell-node')['my_output'] eq 'Hello Oozie'}
</case>
<default to="fail-output"/>
</switch>
</decision>
<kill name="fail">
<message>Shell action failed, error message[${wf:errorMessage(wf:lastErrorNode())}]</message>
</kill>
<kill name="fail-output">
<message>Incorrect output, expected [Hello Oozie] but was [${wf:actionData('shell-node')['my_output']}]</message>
</kill>
<end name="end"/>
</workflow-app>2) upload to hdfs
$ hdfs dfs -put oozie/apps/shell oozie/apps/
3) run and check
$ bin/oozie job -config oozie/apps/shell/job.properties -run
job: 0000004-220629164930563-oozie-sun_-W
$ bin/oozie job -info 0000004-220629164930563-oozie-sun_-W
Job ID : 0000004-220629164930563-oozie-sun_-W
------------------------------------------------------------------------------------------------------------------------------------
Workflow Name : shell-wf
App Path : hdfs://localhost:9000/user/sun_xo/oozie/apps/shell
Status : SUCCEEDED
Run : 0
User : sun_xo
Group : -
Created : 2022-06-29 09:22 GMT
Started : 2022-06-29 09:22 GMT
Last Modified : 2022-06-29 09:22 GMT
Ended : 2022-06-29 09:22 GMT
CoordAction ID: -
Actions
------------------------------------------------------------------------------------------------------------------------------------
ID Status Ext ID Ext Status Err Code
------------------------------------------------------------------------------------------------------------------------------------
[email protected]:start: OK - OK -
------------------------------------------------------------------------------------------------------------------------------------
[email protected] OK application_1656492227290_0007SUCCEEDED -
------------------------------------------------------------------------------------------------------------------------------------
[email protected] OK - end -
------------------------------------------------------------------------------------------------------------------------------------
[email protected] OK - OK -
------------------------------------------------------------------------------------------------------------------------------------
Note:
Shell action’s stdout and stderr output are redirected to the Oozie Launcher map-reduce job task STDOUT that runs the shell command
The output can be found under hdfs://localhost:9000/tmp/sun_xo/logs/application_1656492227290_0007/
application_1656492227290_0007 is ext_id of shell-node
边栏推荐
猜你喜欢

CAN协议通信

Apt get update error: hash checksum does not match

One vs One Mitigation of Intersectional Bias

Neutralizing Self-Selection Bias in Sampling for Sortition

06基于STM32的智能电子药盒设计

静态库与动态库

Mxnet network model (V) conditional Gan neural network

【文献阅读】Small-Footprint Keyword Spotting with Multi-Scale Temporal Convolution

Rivaliser pour la guerre clé des utilisateurs de stock, aider les entreprises à construire un système d'étiquetage parfait 丨 01 examen en direct

Fair Multiple Decision Making Through Soft Interventions
随机推荐
bais mintigation post-processing for individual and group fairness
Hands on deep learning -- multi layer perceptron (MLP)
Frustratingly Simple Few-Shot Object Detection
【pycharm】Cannot find reference ‘XXX‘ in ‘__init__.py‘ 解决办法
[literature reading] mcunet: tiny deep learning on IOT devices
Frustratingly Simple Few-Shot Object Detection
[translation] transformers in computer vision
Differences between saber PSPICE Simulink power supply simulation software
On the properties and methods of list < t >
14:07:08 ckati failed with: signal: killed
VGG (Visual Geometry Group)
JS practical tips
Remote sensing submission process
[literature reading] tenet: a framework for modeling tensor dataflow based on relational centric notation
Fair Multiple Decision Making Through Soft Interventions
06基于STM32的智能电子药盒设计
Oozie 集成 Ssh
MXNet网络模型(五)条件GAN神经网络
04基于ZigBee的室内无线定位系统设计
Valgrind detailed tutorial (1) MemCheck