<?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: Parallel execution of SQL cell in Databricks Notebooks in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/parallel-execution-of-sql-cell-in-databricks-notebooks/m-p/67681#M33415</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/36892"&gt;@Phani1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Can you please explain your usecase as databricks notebook support the sequential executions we have to look for workaround so it will great if you can explain it more.&lt;/P&gt;&lt;P&gt;For now you can manually run multiple cell for sql but it's not possible through workflow jobs&lt;/P&gt;</description>
    <pubDate>Tue, 30 Apr 2024 13:35:19 GMT</pubDate>
    <dc:creator>Ajay-Pandey</dc:creator>
    <dc:date>2024-04-30T13:35:19Z</dc:date>
    <item>
      <title>Parallel execution of SQL cell in Databricks Notebooks</title>
      <link>https://community.databricks.com/t5/data-engineering/parallel-execution-of-sql-cell-in-databricks-notebooks/m-p/67667#M33406</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;Please provide guidance on enabling SQL cells&amp;nbsp; parallel execution in a notebook containing multiple SQL cells. Currently, when we execute notebook and all the SQL cells they run sequentially. I would appreciate assistance on how to execute the SQL cells in parallel using an automated approach. For instance, when we invoke a notebook which consist of multiple SQL cells, it is necessary for those cells to run in parallel.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Janga&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 11:58:02 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/parallel-execution-of-sql-cell-in-databricks-notebooks/m-p/67667#M33406</guid>
      <dc:creator>Phani1</dc:creator>
      <dc:date>2024-04-30T11:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel execution of SQL cell in Databricks Notebooks</title>
      <link>https://community.databricks.com/t5/data-engineering/parallel-execution-of-sql-cell-in-databricks-notebooks/m-p/67669#M33408</link>
      <description>&lt;P&gt;This will help you -&amp;nbsp;&lt;A href="https://community.databricks.com/t5/data-engineering/support-of-running-multiple-cells-at-a-time-in-databricks/td-p/9590" target="_blank"&gt;https://community.databricks.com/t5/data-engineering/support-of-running-multiple-cells-at-a-time-in-databricks/td-p/9590&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I think its depends on which Runtime versions we are using,&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/71565"&gt;@Ajay-Pandey&lt;/a&gt;&amp;nbsp;can guide here more&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 12:38:03 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/parallel-execution-of-sql-cell-in-databricks-notebooks/m-p/67669#M33408</guid>
      <dc:creator>Aviral-Bhardwaj</dc:creator>
      <dc:date>2024-04-30T12:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel execution of SQL cell in Databricks Notebooks</title>
      <link>https://community.databricks.com/t5/data-engineering/parallel-execution-of-sql-cell-in-databricks-notebooks/m-p/67681#M33415</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/36892"&gt;@Phani1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Can you please explain your usecase as databricks notebook support the sequential executions we have to look for workaround so it will great if you can explain it more.&lt;/P&gt;&lt;P&gt;For now you can manually run multiple cell for sql but it's not possible through workflow jobs&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 13:35:19 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/parallel-execution-of-sql-cell-in-databricks-notebooks/m-p/67681#M33415</guid>
      <dc:creator>Ajay-Pandey</dc:creator>
      <dc:date>2024-04-30T13:35:19Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel execution of SQL cell in Databricks Notebooks</title>
      <link>https://community.databricks.com/t5/data-engineering/parallel-execution-of-sql-cell-in-databricks-notebooks/m-p/67766#M33439</link>
      <description>&lt;P&gt;Hi Ajay-Pandey ,&lt;/P&gt;&lt;P&gt;Here is my scenario: In our current situation, we need to load data in multiple stages. Each stage includes a set of insert statements. Instead of running these statements one after another, we can run them in parallel to save time.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Stage1: (below insert statements A,B,C needs to run parallel)&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;Insert into table A&lt;BR /&gt;Insert into table B&lt;BR /&gt;Insert into table C&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Stage2: (below insert statements D,E needs to run parallel)&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;Insert into table d based on A,B&lt;BR /&gt;Insert into table e based on B,C&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Stage 3 (below insert statements F,G needs to run parallel)&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;Insert into table f based on d&lt;BR /&gt;Insert into table g based on e&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Stage 4 &lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;insert into table h based on above tables&lt;/P&gt;&lt;P&gt;Regards,Janga&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2024 02:59:56 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/parallel-execution-of-sql-cell-in-databricks-notebooks/m-p/67766#M33439</guid>
      <dc:creator>Phani1</dc:creator>
      <dc:date>2024-05-01T02:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel execution of SQL cell in Databricks Notebooks</title>
      <link>https://community.databricks.com/t5/data-engineering/parallel-execution-of-sql-cell-in-databricks-notebooks/m-p/67903#M33475</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/36892"&gt;@Phani1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes you can achieve this scenario with the help of Databricks Workflow jobs where you can create task and dependencies for each other.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AjayPandey_0-1714627725482.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/7361i4D412E003E00EF56/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="AjayPandey_0-1714627725482.png" alt="AjayPandey_0-1714627725482.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 05:29:16 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/parallel-execution-of-sql-cell-in-databricks-notebooks/m-p/67903#M33475</guid>
      <dc:creator>Ajay-Pandey</dc:creator>
      <dc:date>2024-05-02T05:29:16Z</dc:date>
    </item>
  </channel>
</rss>

