gpt4 book ai didi

hadoop - 将oozie作业输出发送到邮件ID

转载 作者:行者123 更新时间:2023-12-02 21:29:55 25 4
gpt4 key购买 nike

我几乎没有像hadoop这样的命令,每天都需要执行,并且需要将结果发送到我的邮件ID。如何使用oozie JOB做到这一点?

最佳答案

在Oozie Coordinator的帮助下,您可以基于时间和数据触发器提交工作流。您可以在下面找到有关发送电子邮件的日常协调员工作的示例:

<?xml version="1.0" encoding="UTF-8"?>
<coordinator-app name="cord1" frequency="${coord:days(1)}"
             start="${jobStart}" end="${jobEnd}"
             timezone="UTC"
             xmlns="uri:oozie:coordinator:0.4">
  <action name="an-email">
<email xmlns="uri:oozie:email-action:0.1">
<to>bob@initech.com,the.other.bob@initech.com</to>
<cc>will@initech.com</cc>
<subject>Email notifications for ${wf:id()}</subject>
<body>The wf ${wf:id()} successfully completed.</body>
</email>
<ok to="myotherjob"/>
<error to="errorcleanup"/>
</action>
</coordinator-app>

您可以设置的其他频率如下:
${coord:minutes(int n)}
${coord:hours(int n)}
${coord:days(int n)}
${coord:months(int n)}

关于hadoop - 将oozie作业输出发送到邮件ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34647111/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com