<?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 I am trying to use Databricks Autoloader with File Notification Mode in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/i-am-trying-to-use-databricks-autoloader-with-file-notification/m-p/9534#M4873</link>
    <description>&lt;P&gt;When i run my command for readstream using &amp;nbsp;.option("cloudFiles.useNotifications", "true") it start reading the files from Azure blob (please note that i did not provide the configuration like subscription id , clint id , connect string and all while reading ) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;df = (&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;spark.readStream.format("cloudFiles")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;.option("cloudFiles.format", "csv")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;.option("cloudFiles.useNotifications", "true")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;.option("header", True)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;.load(source_data_loc)&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now when i start writing it using below code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;df.writeStream.format("delta").option("checkpointLocation", checkpoints_loc).outputMode("append").start(target_data_loc)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it started giving me error like Please provide the subscription ID with `cloudFiles.subscriptionId`&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now to resolve these issue i gave all these info as mention below while using readstream &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cloudFilesConf = {&lt;/P&gt;&lt;P&gt;&amp;nbsp;"cloudFiles.subscriptionId": subscriptionId,&lt;/P&gt;&lt;P&gt;&amp;nbsp;"cloudFiles.clientId": spn_client_id,&lt;/P&gt;&lt;P&gt;&amp;nbsp;"cloudFiles.connectionString": QueueSASKey,&lt;/P&gt;&lt;P&gt;&amp;nbsp;"cloudFiles.clientSecret": spn_secret_name,&lt;/P&gt;&lt;P&gt;&amp;nbsp;"cloudFiles.tenantId": spn_tenant_id,&lt;/P&gt;&lt;P&gt;&amp;nbsp;"cloudFiles.resourceGroup": ResourceGroup_name,&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;"cloudFiles.schemaLocation": schema_loc,&lt;/P&gt;&lt;P&gt;&amp;nbsp;#"cloudFiles.useNotifications": "true"&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when i am trying to run now it is giving me "option() got an unexpected keyword argument 'cloudFiles.subscriptionId'" this error so not sure where the issue is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 12 Feb 2023 04:21:13 GMT</pubDate>
    <dc:creator>mk1987c</dc:creator>
    <dc:date>2023-02-12T04:21:13Z</dc:date>
    <item>
      <title>I am trying to use Databricks Autoloader with File Notification Mode</title>
      <link>https://community.databricks.com/t5/data-engineering/i-am-trying-to-use-databricks-autoloader-with-file-notification/m-p/9534#M4873</link>
      <description>&lt;P&gt;When i run my command for readstream using &amp;nbsp;.option("cloudFiles.useNotifications", "true") it start reading the files from Azure blob (please note that i did not provide the configuration like subscription id , clint id , connect string and all while reading ) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;df = (&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;spark.readStream.format("cloudFiles")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;.option("cloudFiles.format", "csv")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;.option("cloudFiles.useNotifications", "true")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;.option("header", True)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;.load(source_data_loc)&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now when i start writing it using below code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;df.writeStream.format("delta").option("checkpointLocation", checkpoints_loc).outputMode("append").start(target_data_loc)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it started giving me error like Please provide the subscription ID with `cloudFiles.subscriptionId`&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now to resolve these issue i gave all these info as mention below while using readstream &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cloudFilesConf = {&lt;/P&gt;&lt;P&gt;&amp;nbsp;"cloudFiles.subscriptionId": subscriptionId,&lt;/P&gt;&lt;P&gt;&amp;nbsp;"cloudFiles.clientId": spn_client_id,&lt;/P&gt;&lt;P&gt;&amp;nbsp;"cloudFiles.connectionString": QueueSASKey,&lt;/P&gt;&lt;P&gt;&amp;nbsp;"cloudFiles.clientSecret": spn_secret_name,&lt;/P&gt;&lt;P&gt;&amp;nbsp;"cloudFiles.tenantId": spn_tenant_id,&lt;/P&gt;&lt;P&gt;&amp;nbsp;"cloudFiles.resourceGroup": ResourceGroup_name,&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;"cloudFiles.schemaLocation": schema_loc,&lt;/P&gt;&lt;P&gt;&amp;nbsp;#"cloudFiles.useNotifications": "true"&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when i am trying to run now it is giving me "option() got an unexpected keyword argument 'cloudFiles.subscriptionId'" this error so not sure where the issue is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 12 Feb 2023 04:21:13 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/i-am-trying-to-use-databricks-autoloader-with-file-notification/m-p/9534#M4873</guid>
      <dc:creator>mk1987c</dc:creator>
      <dc:date>2023-02-12T04:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: I am trying to use Databricks Autoloader with File Notification Mode</title>
      <link>https://community.databricks.com/t5/data-engineering/i-am-trying-to-use-databricks-autoloader-with-file-notification/m-p/9535#M4874</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to share the following docs that might be able to help you with this issue. &lt;A href="https://docs.databricks.com/ingestion/auto-loader/file-notification-mode.html#required-permissions-for-configuring-file-notification-for-adls-gen2-and-azure-blob-storage" target="test_blank"&gt;https://docs.databricks.com/ingestion/auto-loader/file-notification-mode.html#required-permissions-for-configuring-file-notification-for-adls-gen2-and-azure-blob-storage&lt;/A&gt; you need to set the right permission and define all the settings to be able to consume data. &lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2023 22:27:59 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/i-am-trying-to-use-databricks-autoloader-with-file-notification/m-p/9535#M4874</guid>
      <dc:creator>jose_gonzalez</dc:creator>
      <dc:date>2023-02-22T22:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: I am trying to use Databricks Autoloader with File Notification Mode</title>
      <link>https://community.databricks.com/t5/data-engineering/i-am-trying-to-use-databricks-autoloader-with-file-notification/m-p/9536#M4875</link>
      <description>&lt;P&gt;thanks you i found the issue and it is resolved now thanks&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2023 00:22:52 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/i-am-trying-to-use-databricks-autoloader-with-file-notification/m-p/9536#M4875</guid>
      <dc:creator>mk1987c</dc:creator>
      <dc:date>2023-02-23T00:22:52Z</dc:date>
    </item>
    <item>
      <title>Re: I am trying to use Databricks Autoloader with File Notification Mode</title>
      <link>https://community.databricks.com/t5/data-engineering/i-am-trying-to-use-databricks-autoloader-with-file-notification/m-p/9537#M4876</link>
      <description>&lt;P&gt;Please let us know how the issue got resolved&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 08:01:25 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/i-am-trying-to-use-databricks-autoloader-with-file-notification/m-p/9537#M4876</guid>
      <dc:creator>Abhradwip</dc:creator>
      <dc:date>2023-03-17T08:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: I am trying to use Databricks Autoloader with File Notification Mode</title>
      <link>https://community.databricks.com/t5/data-engineering/i-am-trying-to-use-databricks-autoloader-with-file-notification/m-p/9538#M4877</link>
      <description>&lt;P&gt;Hi Abhradwip, the issue is resolved.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2023 06:08:04 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/i-am-trying-to-use-databricks-autoloader-with-file-notification/m-p/9538#M4877</guid>
      <dc:creator>mk1987c</dc:creator>
      <dc:date>2023-03-21T06:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: I am trying to use Databricks Autoloader with File Notification Mode</title>
      <link>https://community.databricks.com/t5/data-engineering/i-am-trying-to-use-databricks-autoloader-with-file-notification/m-p/71572#M34348</link>
      <description>&lt;P&gt;you need to create&amp;nbsp;&lt;SPAN&gt;&lt;SPAN class=""&gt;event grid subscriptions and queues should already provisioned&amp;nbsp;and it should be part of the CI/CD process&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jun 2024 09:23:57 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/i-am-trying-to-use-databricks-autoloader-with-file-notification/m-p/71572#M34348</guid>
      <dc:creator>manish1987c</dc:creator>
      <dc:date>2024-06-04T09:23:57Z</dc:date>
    </item>
  </channel>
</rss>

