<?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 How to create a mount point to File share in Azure Storage account in Get Started Discussions</title>
    <link>https://community.databricks.com/t5/get-started-discussions/how-to-create-a-mount-point-to-file-share-in-azure-storage/m-p/112627#M9200</link>
    <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I have a requirement to create a mount point to file share in Azure Storage account, I did follow the official documentation. However, I could not create the mount point to fileshare.. and the documentation discribed the mount point creation to only containers in Azure storage account.. that did not work for fileshare.&lt;/P&gt;&lt;P&gt;Documentation I followed and it explained only for container mounting:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/azure/key-vault/general/integrate-databricks-blob-storage?source=recommendations" target="_blank" rel="noopener"&gt;Access Azure Blob Storage using Azure Databricks and Azure Key Vault | Microsoft Learn&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Command I used:&lt;BR /&gt;---------------------------------------&lt;/P&gt;&lt;P&gt;dbutils.fs.mount(&lt;BR /&gt;source = "wasbs://&amp;lt;your-container-name&amp;gt;@&amp;lt;your-storage-account-name&amp;gt;.blob.core.windows.net",&lt;BR /&gt;mount_point = "/mnt/&amp;lt;mount-name&amp;gt;",&lt;BR /&gt;extra_configs = {"&amp;lt;conf-key&amp;gt;":dbutils.secrets.get(scope = "&amp;lt;scope-name&amp;gt;", key = "&amp;lt;key-name&amp;gt;")})&lt;/P&gt;&lt;P&gt;df = spark.read.text("/mnt/&amp;lt;mount-name&amp;gt;/&amp;lt;file-name&amp;gt;")&lt;/P&gt;&lt;P&gt;df.show()&lt;/P&gt;&lt;P&gt;------------&lt;/P&gt;&lt;P&gt;Can somoone please share the step-by-spey process to create mount point to Fileshare in Azure Storage account from Databricks only.&lt;/P&gt;&lt;P&gt;Appreciate your help.!!&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;</description>
    <pubDate>Fri, 14 Mar 2025 17:19:48 GMT</pubDate>
    <dc:creator>RajaDOP</dc:creator>
    <dc:date>2025-03-14T17:19:48Z</dc:date>
    <item>
      <title>How to create a mount point to File share in Azure Storage account</title>
      <link>https://community.databricks.com/t5/get-started-discussions/how-to-create-a-mount-point-to-file-share-in-azure-storage/m-p/112627#M9200</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I have a requirement to create a mount point to file share in Azure Storage account, I did follow the official documentation. However, I could not create the mount point to fileshare.. and the documentation discribed the mount point creation to only containers in Azure storage account.. that did not work for fileshare.&lt;/P&gt;&lt;P&gt;Documentation I followed and it explained only for container mounting:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/azure/key-vault/general/integrate-databricks-blob-storage?source=recommendations" target="_blank" rel="noopener"&gt;Access Azure Blob Storage using Azure Databricks and Azure Key Vault | Microsoft Learn&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Command I used:&lt;BR /&gt;---------------------------------------&lt;/P&gt;&lt;P&gt;dbutils.fs.mount(&lt;BR /&gt;source = "wasbs://&amp;lt;your-container-name&amp;gt;@&amp;lt;your-storage-account-name&amp;gt;.blob.core.windows.net",&lt;BR /&gt;mount_point = "/mnt/&amp;lt;mount-name&amp;gt;",&lt;BR /&gt;extra_configs = {"&amp;lt;conf-key&amp;gt;":dbutils.secrets.get(scope = "&amp;lt;scope-name&amp;gt;", key = "&amp;lt;key-name&amp;gt;")})&lt;/P&gt;&lt;P&gt;df = spark.read.text("/mnt/&amp;lt;mount-name&amp;gt;/&amp;lt;file-name&amp;gt;")&lt;/P&gt;&lt;P&gt;df.show()&lt;/P&gt;&lt;P&gt;------------&lt;/P&gt;&lt;P&gt;Can somoone please share the step-by-spey process to create mount point to Fileshare in Azure Storage account from Databricks only.&lt;/P&gt;&lt;P&gt;Appreciate your help.!!&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 17:19:48 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/how-to-create-a-mount-point-to-file-share-in-azure-storage/m-p/112627#M9200</guid>
      <dc:creator>RajaDOP</dc:creator>
      <dc:date>2025-03-14T17:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a mount point to File share in Azure Storage account</title>
      <link>https://community.databricks.com/t5/get-started-discussions/how-to-create-a-mount-point-to-file-share-in-azure-storage/m-p/117213#M9904</link>
      <description>&lt;P&gt;Hi Raja,&lt;/P&gt;&lt;P&gt;You're correct that the wasbs:// method is for Azure Blob Storage, not File Shares! I believe File Share mounting is different and would require you to use SMB protocol mounted outside of Databricks since File Shares isn't natively supported! So you can either use a VM or container, or instead of mounting, use the Azure SDK for Python to read/write files directly from Azure File Share:&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. install SDK: pip install azure-storage-file-share&lt;/P&gt;&lt;P&gt;2.read the file you want from Azure File Share w/Python in Databricks (sample code):&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;from azure.storage.fileshare import ShareFileClient&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;file_client = ShareFileClient.from_connection_string(&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; conn_str="&amp;lt;your-connection-string&amp;gt;",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; share_name="&amp;lt;share-name&amp;gt;",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; file_path="&amp;lt;file-name&amp;gt;"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;download = file_client.download_file()&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;file_content = download.readall()&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;print(file_content.decode())&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Apr 2025 20:44:06 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/how-to-create-a-mount-point-to-file-share-in-azure-storage/m-p/117213#M9904</guid>
      <dc:creator>Aaaddison</dc:creator>
      <dc:date>2025-04-30T20:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a mount point to File share in Azure Storage account</title>
      <link>https://community.databricks.com/t5/get-started-discussions/how-to-create-a-mount-point-to-file-share-in-azure-storage/m-p/122926#M10229</link>
      <description>&lt;P&gt;How to get Connection-String for File Share?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2025 09:48:19 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/how-to-create-a-mount-point-to-file-share-in-azure-storage/m-p/122926#M10229</guid>
      <dc:creator>Upendra_Dwivedi</dc:creator>
      <dc:date>2025-06-26T09:48:19Z</dc:date>
    </item>
  </channel>
</rss>

