[关闭]
@Arslan6and6 2016-08-29T02:44:59.000000Z 字数 932 阅读 698

各种开源软件官网地址

文档收集


oozie官网地址
http://oozie.apache.org/
shell workflow 模板地址

  1. How to run any shell script or perl script or CPP executable
  2. <workflow-app xmlns='uri:oozie:workflow:0.3' name='shell-wf'>
  3. <start to='shell1' />
  4. <action name='shell1'>
  5. <shell xmlns="uri:oozie:shell-action:0.1">
  6. <job-tracker>${jobTracker}</job-tracker>
  7. <name-node>${nameNode}</name-node>
  8. <configuration>
  9. <property>
  10. <name>mapred.job.queue.name</name>
  11. <value>${queueName}</value>
  12. </property>
  13. </configuration>
  14. <exec>${EXEC}</exec>
  15. <argument>A</argument>
  16. <argument>B</argument>
  17. <file>${EXEC}#${EXEC}</file> <!--Copy the executable to compute node's current working directory -->
  18. </shell>
  19. <ok to="end" />
  20. <error to="fail" />
  21. </action>
  22. <kill name="fail">
  23. <message>Script failed, error message[${wf:errorMessage(wf:lastErrorNode())}]</message>
  24. </kill>
  25. <end name='end' />
  26. </workflow-app>

http://oozie.apache.org/docs/4.0.0/DG_ShellActionExtension.html


Hue官网地址
http://archive.cloudera.com/cdh5/cdh/5/hue-3.7.0-cdh5.3.6/manual.html#_install_hue

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注