设置DBX部署的失败运行时的电子邮件通知。

huangapple go评论45阅读模式
英文:

Setup E-mail notification on failure run with DBX deployment

问题

我正在使用DBX将工作流部署到Databricks。在这里,我想添加一个步骤,每当工作流失败时,都会发送电子邮件到email123@email.com。我的deploy.yml文件的大纲如下:

deployments:
  - name: my_workflow
    
    schedule:
      quartz_cron_expression: "0 0 5 * * ?"
      timezone_id: "Europe/Berlin"

    format: MULTI_TASK

    job_clusters:
      - job_cluster_key: "basic-job-cluster"
        <<: *base-job-cluster

    tasks:
      task_key: "my-task"
      job_cluster_key: "basic-job-cluster"
      spark_python_task:
        python_files: "file://my_file.py"
 
    <<插入通知代码>>

我尚未找到相关文档,如果您能指向相关文档,我也会很高兴。

英文:

I am deploying workflows to Databricks using DBX. Here I want to add a step which will send an e-mail to email123@email.com whenever the workflow fails. The outline of my deloyment.yml file is as below:

deployments:
  - name: my_workflow
    
    schedule:
      quartz_cron_expression: &quot;0 0 5 * * ?&quot;
      timezone_id: &quot;Europe/Berline&quot;

    format: MULTI_TASK

    job_clusters:
      - job_cluster_key: &quot;basic-job-cluster&quot;
        &lt;&lt;: *base-job-cluster

    tasks:
      task_key: &quot;my-task
      job_cluster_key: &quot;basic-job-cluster&quot;
      spark_python_task:
        python_files: &quot;file://my_file.py&quot;
 
    &lt;&lt; Insert notification code here &gt;&gt;

I have not been able to find documentation about it, so if you can point me to that I will also be happy.

答案1

得分: 0

我找到了DBX文档中的解决方案。对于其他查找,请添加以下内容:

email_notifications:
on_failure: ["user@email.com"]

文档链接:https://dbx.readthedocs.io/en/latest/reference/deployment/

英文:

I found the solution in DBX documentation. For other looking add the following:

email_notifications:
  on_failure: [ &quot;user@email.com&quot; ]

Link to documentation: https://dbx.readthedocs.io/en/latest/reference/deployment/

答案2

得分: 0

更新您的deployment.yml文件如下:

deployments:
  - name: my_workflow
    
    email_notifications:
          on_start: ["user@email.com"]
          on_success: ["user@email.com"]
          on_failure: ["user@email.com"]
 
    schedule:
      quartz_cron_expression: "0 0 5 * * ?"
      timezone_id: "Europe/Berline"

    format: MULTI_TASK

    job_clusters:
      - job_cluster_key: "basic-job-cluster"
        <<: *base-job-cluster

    tasks:
      task_key: "my-task"
      job_cluster_key: "basic-job-cluster"
      spark_python_task:
        python_files: "file://my_file.py"
英文:

Update your deployment.yml file to below:

deployments:
  - name: my_workflow
    
    email_notifications:
          on_start: [ &quot;user@email.com&quot; ]
          on_success: [ &quot;user@email.com&quot; ]
          on_failure: [ &quot;user@email.com&quot; ]
 
    schedule:
      quartz_cron_expression: &quot;0 0 5 * * ?&quot;
      timezone_id: &quot;Europe/Berline&quot;

    format: MULTI_TASK

    job_clusters:
      - job_cluster_key: &quot;basic-job-cluster&quot;
        &lt;&lt;: *base-job-cluster

    tasks:
      task_key: &quot;my-task
      job_cluster_key: &quot;basic-job-cluster&quot;
      spark_python_task:
        python_files: &quot;file://my_file.py&quot;
 

huangapple
  • 本文由 发表于 2023年6月22日 14:45:16
  • 转载请务必保留本文链接:https://go.coder-hub.com/76529204.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定