<?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: Unable to Access Azure Blob Storage from Databricks Community Edition Notebook in Machine Learning</title>
    <link>https://community.databricks.com/t5/machine-learning/unable-to-access-azure-blob-storage-from-databricks-community/m-p/152235#M4590</link>
    <description>&lt;P class=""&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/223401"&gt;@knight22-21&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;Could you share a bit more detail so that we can help better?&lt;/P&gt;&lt;OL class=""&gt;&lt;LI&gt;&lt;STRONG&gt;How are you trying to connect?&lt;/STRONG&gt; (e.g., spark.conf.set, dbutils.fs.mount, Python SDK, etc.)&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;What exact error are you seeing?&lt;/STRONG&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P class=""&gt;The answer depends heavily on your method:&lt;/P&gt;&lt;UL class=""&gt;&lt;LI&gt;dbutils.fs.mount() → &lt;STRONG&gt;not supported&lt;/STRONG&gt; in Community Edition&lt;/LI&gt;&lt;LI&gt;Python azure-storage-blob SDK → &lt;STRONG&gt;may work&lt;/STRONG&gt;, but you'd need to be able to pip install azure-storage-blob first&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="python"&gt;# This approach MIGHT work - worth trying:
pip install azure-storage-blob

from azure.storage.blob import BlobServiceClient
client = BlobServiceClient.from_connection_string("your_connection_string")​&lt;/LI-CODE&gt;&lt;P class=""&gt;If none of these work due to network restrictions, the reliable fallback is uploading your file directly to a &lt;STRONG&gt;Unity Catalog Volume&lt;/STRONG&gt; via the Databricks UI and reading from there.&lt;/P&gt;&lt;P class=""&gt;What method are you currently using?&lt;/P&gt;</description>
    <pubDate>Fri, 27 Mar 2026 03:25:32 GMT</pubDate>
    <dc:creator>AngelShrestha</dc:creator>
    <dc:date>2026-03-27T03:25:32Z</dc:date>
    <item>
      <title>Unable to Access Azure Blob Storage from Databricks Community Edition Notebook</title>
      <link>https://community.databricks.com/t5/machine-learning/unable-to-access-azure-blob-storage-from-databricks-community/m-p/152219#M4589</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I’m currently using the Databricks Community Edition and trying to access data stored in Azure Blob Storage from my .ipynb notebook. The storage account is part of my student free Azure subscription.&lt;/P&gt;&lt;P&gt;However, I’m not able to establish a connection or retrieve any data from the blob storage.&lt;/P&gt;&lt;P&gt;I wanted to check:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Is access to external Azure Blob Storage restricted in the Databricks Community Edition?&lt;/LI&gt;&lt;LI&gt;If it is supported, could someone guide me on the correct way to configure the connection?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Any help or pointers would be greatly appreciated. Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2026 19:16:17 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/unable-to-access-azure-blob-storage-from-databricks-community/m-p/152219#M4589</guid>
      <dc:creator>knight22-21</dc:creator>
      <dc:date>2026-03-26T19:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Access Azure Blob Storage from Databricks Community Edition Notebook</title>
      <link>https://community.databricks.com/t5/machine-learning/unable-to-access-azure-blob-storage-from-databricks-community/m-p/152235#M4590</link>
      <description>&lt;P class=""&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/223401"&gt;@knight22-21&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;Could you share a bit more detail so that we can help better?&lt;/P&gt;&lt;OL class=""&gt;&lt;LI&gt;&lt;STRONG&gt;How are you trying to connect?&lt;/STRONG&gt; (e.g., spark.conf.set, dbutils.fs.mount, Python SDK, etc.)&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;What exact error are you seeing?&lt;/STRONG&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P class=""&gt;The answer depends heavily on your method:&lt;/P&gt;&lt;UL class=""&gt;&lt;LI&gt;dbutils.fs.mount() → &lt;STRONG&gt;not supported&lt;/STRONG&gt; in Community Edition&lt;/LI&gt;&lt;LI&gt;Python azure-storage-blob SDK → &lt;STRONG&gt;may work&lt;/STRONG&gt;, but you'd need to be able to pip install azure-storage-blob first&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="python"&gt;# This approach MIGHT work - worth trying:
pip install azure-storage-blob

from azure.storage.blob import BlobServiceClient
client = BlobServiceClient.from_connection_string("your_connection_string")​&lt;/LI-CODE&gt;&lt;P class=""&gt;If none of these work due to network restrictions, the reliable fallback is uploading your file directly to a &lt;STRONG&gt;Unity Catalog Volume&lt;/STRONG&gt; via the Databricks UI and reading from there.&lt;/P&gt;&lt;P class=""&gt;What method are you currently using?&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2026 03:25:32 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/unable-to-access-azure-blob-storage-from-databricks-community/m-p/152235#M4590</guid>
      <dc:creator>AngelShrestha</dc:creator>
      <dc:date>2026-03-27T03:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Access Azure Blob Storage from Databricks Community Edition Notebook</title>
      <link>https://community.databricks.com/t5/machine-learning/unable-to-access-azure-blob-storage-from-databricks-community/m-p/152279#M4591</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I think you are referring to Databricks Free edition, in which case this doesn't support the connection to external storage such as Azure Blob storage.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Emma&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2026 09:48:23 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/unable-to-access-azure-blob-storage-from-databricks-community/m-p/152279#M4591</guid>
      <dc:creator>emma_s</dc:creator>
      <dc:date>2026-03-27T09:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Access Azure Blob Storage from Databricks Community Edition Notebook</title>
      <link>https://community.databricks.com/t5/machine-learning/unable-to-access-azure-blob-storage-from-databricks-community/m-p/152371#M4592</link>
      <description>&lt;P&gt;BlobServiceClient really worked for me. Thank you!&lt;/P&gt;</description>
      <pubDate>Sat, 28 Mar 2026 12:58:05 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/unable-to-access-azure-blob-storage-from-databricks-community/m-p/152371#M4592</guid>
      <dc:creator>knight22-21</dc:creator>
      <dc:date>2026-03-28T12:58:05Z</dc:date>
    </item>
  </channel>
</rss>

