<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: how to set retry attempt and how to set email alert with error message of databricks notebook in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/how-to-set-retry-attempt-and-how-to-set-email-alert-with-error/m-p/33654#M24604</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also use azue data factory to run databricks notebook as with data factory you can nice handle many data flow scenarios depend on task success/failure/completion/timeout etc. -- Can't we implement this type of scenario in Databricks using Multiple tasks job.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
    <pubDate>Wed, 08 Dec 2021 06:11:47 GMT</pubDate>
    <dc:creator>SailajaB</dc:creator>
    <dc:date>2021-12-08T06:11:47Z</dc:date>
    <item>
      <title>how to set retry attempt and how to set email alert with error message of databricks notebook</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-set-retry-attempt-and-how-to-set-email-alert-with-error/m-p/33650#M24600</link>
      <description>&lt;P&gt;how to set retry attempt in the data bricks notebook in term of like if any cmd /cell get fails that times that particular cmd/cell should be rerun for purpose of connection issue etc.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Dec 2021 10:57:58 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-set-retry-attempt-and-how-to-set-email-alert-with-error/m-p/33650#M24600</guid>
      <dc:creator>Siddhesh2525</dc:creator>
      <dc:date>2021-12-07T10:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: how to set retry attempt and how to set email alert with error message of databricks notebook</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-set-retry-attempt-and-how-to-set-email-alert-with-error/m-p/33651#M24601</link>
      <description>&lt;UL&gt;&lt;LI&gt;you can just implement try/except in cell, handling it by using dbutils.notebook.exit(jobId) and using other dbutils can help,&lt;/LI&gt;&lt;LI&gt;when job fail you can specify your email to get job alerts,&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image.png"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/2252iD7816717A8E91141/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;additionally if notebook job fail you can specify retry in job task settings&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image.png"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/2243iD6D07B298871F44A/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Dec 2021 11:12:02 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-set-retry-attempt-and-how-to-set-email-alert-with-error/m-p/33651#M24601</guid>
      <dc:creator>Hubert-Dudek</dc:creator>
      <dc:date>2021-12-07T11:12:02Z</dc:date>
    </item>
    <item>
      <title>Re: how to set retry attempt and how to set email alert with error message of databricks notebook</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-set-retry-attempt-and-how-to-set-email-alert-with-error/m-p/33652#M24602</link>
      <description>&lt;UL&gt;&lt;LI&gt; "you can just implement try/except in cell, handling it by using dbutils.notebook.exit(jobId) and using other dbutils can help,&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@&lt;A href="https://community.databricks.com/s/profile/0053f000000WW82AAG" alt="https://community.databricks.com/s/profile/0053f000000WW82AAG" target="_blank"&gt;HubertDudek&lt;/A&gt;  As i am fresher in the databricks ,Could you please suggest /explain me in detail &lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Dec 2021 11:26:57 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-set-retry-attempt-and-how-to-set-email-alert-with-error/m-p/33652#M24602</guid>
      <dc:creator>Siddhesh2525</dc:creator>
      <dc:date>2021-12-07T11:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: how to set retry attempt and how to set email alert with error message of databricks notebook</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-set-retry-attempt-and-how-to-set-email-alert-with-error/m-p/33653#M24603</link>
      <description>&lt;P&gt;&lt;A href="https://docs.databricks.com/notebooks/notebook-workflows.html" target="test_blank"&gt;https://docs.databricks.com/notebooks/notebook-workflows.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dbutils.notebook.run() - run other notebook from main notebook&lt;/P&gt;&lt;P&gt;dbutils.notebook.exit("failed") - quit notebook and can return status to main notebook (it can be in except block)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With all this command you can implement any own logic.&lt;/P&gt;&lt;P&gt;I also use azue data factory to run databricks notebook as with data factory you can nice handle many data flow scenarios depend on task success/failure/completion/timeout etc.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Dec 2021 12:36:44 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-set-retry-attempt-and-how-to-set-email-alert-with-error/m-p/33653#M24603</guid>
      <dc:creator>Hubert-Dudek</dc:creator>
      <dc:date>2021-12-07T12:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to set retry attempt and how to set email alert with error message of databricks notebook</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-set-retry-attempt-and-how-to-set-email-alert-with-error/m-p/33654#M24604</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also use azue data factory to run databricks notebook as with data factory you can nice handle many data flow scenarios depend on task success/failure/completion/timeout etc. -- Can't we implement this type of scenario in Databricks using Multiple tasks job.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 06:11:47 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-set-retry-attempt-and-how-to-set-email-alert-with-error/m-p/33654#M24604</guid>
      <dc:creator>SailajaB</dc:creator>
      <dc:date>2021-12-08T06:11:47Z</dc:date>
    </item>
  </channel>
</rss>

