<?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 Unity Catalog - Storage Account Data Access in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/unity-catalog-storage-account-data-access/m-p/67474#M33349</link>
    <description>&lt;P&gt;I was exploring on unity catalog option on Databricks premium workspace.&lt;BR /&gt;&lt;BR /&gt;I understood that i need to create storage account credentials and external connection in workspace.&lt;/P&gt;&lt;P&gt;Later, i can access the cloud data using '&lt;EM&gt;abfss://storage_account_details&lt;/EM&gt;' .&lt;/P&gt;&lt;P&gt;I was wondering if we can access the data using &lt;STRONG&gt;mount &lt;/STRONG&gt;&lt;EM&gt;point instead of using full 'abfss:' path.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Please guide me if there is any option to do it in premium workspace.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 27 Apr 2024 15:35:45 GMT</pubDate>
    <dc:creator>Mailendiran</dc:creator>
    <dc:date>2024-04-27T15:35:45Z</dc:date>
    <item>
      <title>Unity Catalog - Storage Account Data Access</title>
      <link>https://community.databricks.com/t5/data-engineering/unity-catalog-storage-account-data-access/m-p/67474#M33349</link>
      <description>&lt;P&gt;I was exploring on unity catalog option on Databricks premium workspace.&lt;BR /&gt;&lt;BR /&gt;I understood that i need to create storage account credentials and external connection in workspace.&lt;/P&gt;&lt;P&gt;Later, i can access the cloud data using '&lt;EM&gt;abfss://storage_account_details&lt;/EM&gt;' .&lt;/P&gt;&lt;P&gt;I was wondering if we can access the data using &lt;STRONG&gt;mount &lt;/STRONG&gt;&lt;EM&gt;point instead of using full 'abfss:' path.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Please guide me if there is any option to do it in premium workspace.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Apr 2024 15:35:45 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/unity-catalog-storage-account-data-access/m-p/67474#M33349</guid>
      <dc:creator>Mailendiran</dc:creator>
      <dc:date>2024-04-27T15:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: Unity Catalog - Storage Account Data Access</title>
      <link>https://community.databricks.com/t5/data-engineering/unity-catalog-storage-account-data-access/m-p/67504#M33358</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/79063"&gt;@Mailendiran&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In Databricks, mounting storage to DBFS (Databricks File System) using the `abfss` protocol is a common practice for accessing data stored externally in Azure Blob Storage. While you typically use the full `abfss` path to access data, you can indeed simplify this process by mounting the storage and accessing it via a mount point.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;You can mount the Azure Blob Storage to DBFS using the `&lt;STRONG&gt;dbutils.fs.mount&lt;/STRONG&gt;` command.&lt;/LI&gt;&lt;LI&gt;Specify the mount point (a directory in DBFS) and provide the Azure Blob Storage URI.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;to do this create a notebook in databricks environment and use the below commands after updating your container name and other required things:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PYTHON&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;storage_account_name = "your_storage_account_name"
container_name = "your_container_name"
mount_point = "/mnt/storage"
dbutils.fs.mount(
source = f"abfss://$storage_account_name@{storage_account_name}.dfs.core.windows.net/{container_name}",
mount_point = mount_point,
extra_configs = {"fs.azure.account.key."+storage_account_name+".dfs.core.windows.net":dbutils.secrets.get(scope = "your_scope_name", key = "your_storage_key")})&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;to access data now you can use:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;data_df = spark.read.csv("/mnt/storage/path_to_your_data.csv")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps, thanks for posting.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Apr 2024 16:57:28 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/unity-catalog-storage-account-data-access/m-p/67504#M33358</guid>
      <dc:creator>Palash01</dc:creator>
      <dc:date>2024-04-28T16:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: Unity Catalog - Storage Account Data Access</title>
      <link>https://community.databricks.com/t5/data-engineering/unity-catalog-storage-account-data-access/m-p/67743#M33430</link>
      <description>&lt;P&gt;Databricks strategic direction is to deprecate mount points in favor of Unity Catalog Volumes.&lt;BR /&gt;Setup an STORAGE CREDENTIAL and EXTERNAL LOCATION to access and define how to get to your cloud storage account. To access data on the account, define a Table or a Volume (file based access).&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 19:21:08 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/unity-catalog-storage-account-data-access/m-p/67743#M33430</guid>
      <dc:creator>DouglasMoore</dc:creator>
      <dc:date>2024-04-30T19:21:08Z</dc:date>
    </item>
    <item>
      <title>Re: Unity Catalog - Storage Account Data Access</title>
      <link>https://community.databricks.com/t5/data-engineering/unity-catalog-storage-account-data-access/m-p/113465#M44544</link>
      <description>&lt;P&gt;is this is also applicable to aws databricks becoz i'm not seeing option to setup credentials, just having s3 configuration only.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Mar 2025 06:09:07 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/unity-catalog-storage-account-data-access/m-p/113465#M44544</guid>
      <dc:creator>ashish31negi</dc:creator>
      <dc:date>2025-03-25T06:09:07Z</dc:date>
    </item>
  </channel>
</rss>

