<?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: Databricks Azure Blob Storage access in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/databricks-azure-blob-storage-access/m-p/25765#M17971</link>
    <description>&lt;P&gt;Hi @Tarique Anwar​&amp;nbsp;, could you please refer to &lt;A href="https://learn.microsoft.com/en-us/answers/questions/334786/azure-blob-storage-fails-to-authenticate-34make-su.html" alt="https://learn.microsoft.com/en-us/answers/questions/334786/azure-blob-storage-fails-to-authenticate-34make-su.html" target="_blank"&gt;https://learn.microsoft.com/en-us/answers/questions/334786/azure-blob-storage-fails-to-authenticate-34make-su.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Please let us know if this helps?&lt;/P&gt;</description>
    <pubDate>Wed, 26 Oct 2022 07:10:32 GMT</pubDate>
    <dc:creator>Debayan</dc:creator>
    <dc:date>2022-10-26T07:10:32Z</dc:date>
    <item>
      <title>Databricks Azure Blob Storage access</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-azure-blob-storage-access/m-p/25764#M17970</link>
      <description>&lt;P&gt;I am trying to access files stored in Azure blob storage and have followed the documentation linked below:&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.databricks.com/external-data/azure-storage.html" alt="https://docs.databricks.com/external-data/azure-storage.html" target="_blank"&gt;https://docs.databricks.com/external-data/azure-storage.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was successful in mounting the Azure blob storage on dbfs but it seems that the method is not recommended anymore. So, I tried to set up direct access using URI after using SAS authentication.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;spark.conf.set("fs.azure.account.auth.type.&amp;lt;storage-account&amp;gt;.dfs.core.windows.net", "SAS")
spark.conf.set("fs.azure.sas.token.provider.type.&amp;lt;storage-account&amp;gt;.dfs.core.windows.net", "org.apache.hadoop.fs.azurebfs.sas.FixedSASTokenProvider")
spark.conf.set("fs.azure.sas.fixed.token.&amp;lt;storage-account&amp;gt;.dfs.core.windows.net", "&amp;lt;token&amp;gt;")&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Now when I try to access any file using:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;spark.read.load("abfss://&amp;lt;container-name&amp;gt;@&amp;lt;storage-account-name&amp;gt;.dfs.core.windows.net/&amp;lt;path-to-data&amp;gt;")&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I get the following error:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Operation failed: "Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature.", 403, HEAD,&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;What needs to be changed for this to work?&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 05:43:55 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-azure-blob-storage-access/m-p/25764#M17970</guid>
      <dc:creator>tariq</dc:creator>
      <dc:date>2022-10-26T05:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks Azure Blob Storage access</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-azure-blob-storage-access/m-p/25766#M17972</link>
      <description>&lt;P&gt;Hi @Tarique Anwar​&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does @Debayan Mukherjee​&amp;nbsp; response answer your question? If yes, would you be happy to mark it as best so that other members can find the solution more quickly?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We'd love to hear from you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Nov 2022 04:24:59 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-azure-blob-storage-access/m-p/25766#M17972</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-28T04:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks Azure Blob Storage access</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-azure-blob-storage-access/m-p/25767#M17973</link>
      <description>&lt;P&gt;@Debayan Mukherjee​&amp;nbsp;@Tarique Anwar​&amp;nbsp;@Vidula Khanna​&amp;nbsp;&lt;/P&gt;&lt;P&gt;Even we're facing this issue while creating table from databricks sql. &lt;/P&gt;&lt;P&gt;create table test using delta location 'abfss://[container_name]@[storage_account].dfs.core.windows.net/'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We created external_location, storage_credentail with access_connector id. And provided storage blob data contributor role for access conenctor id. It was working until day before yesterday, not from yesterday.  Getting below error&lt;/P&gt;&lt;P&gt;"AuthenticationFailed, "Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature"&lt;/P&gt;&lt;P&gt;I followed the link shared- &lt;A href="https://learn.microsoft.com/en-us/answers/questions/334786/azure-blob-storage-fails-to-authenticate-34make-su.html" alt="https://learn.microsoft.com/en-us/answers/questions/334786/azure-blob-storage-fails-to-authenticate-34make-su.html" target="_blank"&gt;https://learn.microsoft.com/en-us/answers/questions/334786/azure-blob-storage-fails-to-authenticate-34make-su.html&lt;/A&gt; along with the stack over flow - &lt;A href="https://stackoverflow.com/questions/24492790/azurestorage-blob-server-failed-to-authenticate-the-request-make-sure-the-value" target="test_blank"&gt;https://stackoverflow.com/questions/24492790/azurestorage-blob-server-failed-to-authenticate-the-request-make-sure-the-value&lt;/A&gt; which is pointing but still no luck.&lt;/P&gt;&lt;P&gt;if we have to control api version in header, isn't it something in control of databricks? as we're using databricks sql.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2023 07:17:57 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-azure-blob-storage-access/m-p/25767#M17973</guid>
      <dc:creator>ravinchi</dc:creator>
      <dc:date>2023-01-13T07:17:57Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks Azure Blob Storage access</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-azure-blob-storage-access/m-p/25769#M17975</link>
      <description>&lt;P&gt;Firewall settings are fine, and its allowed from all networks @Debayan Mukherjee​&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2023 09:21:53 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-azure-blob-storage-access/m-p/25769#M17975</guid>
      <dc:creator>ravinchi</dc:creator>
      <dc:date>2023-01-17T09:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks Azure Blob Storage access</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-azure-blob-storage-access/m-p/25765#M17971</link>
      <description>&lt;P&gt;Hi @Tarique Anwar​&amp;nbsp;, could you please refer to &lt;A href="https://learn.microsoft.com/en-us/answers/questions/334786/azure-blob-storage-fails-to-authenticate-34make-su.html" alt="https://learn.microsoft.com/en-us/answers/questions/334786/azure-blob-storage-fails-to-authenticate-34make-su.html" target="_blank"&gt;https://learn.microsoft.com/en-us/answers/questions/334786/azure-blob-storage-fails-to-authenticate-34make-su.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Please let us know if this helps?&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 07:10:32 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-azure-blob-storage-access/m-p/25765#M17971</guid>
      <dc:creator>Debayan</dc:creator>
      <dc:date>2022-10-26T07:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks Azure Blob Storage access</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-azure-blob-storage-access/m-p/25768#M17974</link>
      <description>&lt;P&gt;Hi, @Ravindra Ch​&amp;nbsp;, could you please check the firewall settings in Azure networking?&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jan 2023 04:35:08 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-azure-blob-storage-access/m-p/25768#M17974</guid>
      <dc:creator>Debayan</dc:creator>
      <dc:date>2023-01-16T04:35:08Z</dc:date>
    </item>
  </channel>
</rss>

