Azkaban有依赖关系的.flow文件

场景需要遇到有依赖关系的shell脚本执行

单纯的做一下记录

config:
  failure.emails: XXX@163.com
  retries: 3
  retry.backoff: 5000
nodes:
  - name: job_user_s
    type: command
    config:
      command: sh user_s/user_s.sh

  - name: job_user_s_azkaban
    type: command
    dependsOn:
      - job_user_s
    config:
      command: sh user_s/user_s_azkaban.sh

失败之后重试3次,时间设置为5S
文件夹目录如下:
Azkaban有依赖关系的.flow文件_第1张图片

你可能感兴趣的:(shell脚本)