<?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 configure a Job-Compute for Unity Catalog Access? (Q/A) in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/how-to-configure-a-job-compute-for-unity-catalog-access-q-a/m-p/131056#M48975</link>
    <description>&lt;P&gt;If you need to access tables that are in a volume of Unity Catalog (UC), with the following configuration will work:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;targets:
  dev:
    mode: development
    default: true
    workspace:
      host: https://&amp;lt;workspace&amp;gt;.azuredatabricks.net/
    run_as:
      user_name: &amp;lt;user_email&amp;gt;
    resources:
      jobs:
        etl_process:
          job_clusters:
            - job_cluster_key: ${bundle.target}-${bundle.name}-job-cluster
              new_cluster:
                autoscale:
                  min_workers: 2
                  max_workers: 8
                spark_version: "14.3.x-scala2.12"
                driver_node_type_id: "Standard_F16s_v2"
                node_type_id: "Standard_L4s"
                data_security_mode: "SINGLE_USER"
                runtime_engine: "STANDARD"
                azure_attributes:
                  first_on_demand: 1
                  availability: SPOT_WITH_FALLBACK_AZURE
                  spot_bid_max_price: 100
                spark_conf:
                  spark.databricks.unityCatalog.enabled: "true"
                  spark.sql.catalog.unity: "com.databricks.sql.managedcatalog.UnityCatalogProvider"
                  spark.sql.catalog.spark_catalog: "org.apache.spark.sql.delta.catalog.DeltaCatalog"&lt;/LI-CODE&gt;</description>
    <pubDate>Fri, 05 Sep 2025 17:46:19 GMT</pubDate>
    <dc:creator>PabloCSD</dc:creator>
    <dc:date>2025-09-05T17:46:19Z</dc:date>
    <item>
      <title>How to configure a Job-Compute for Unity Catalog Access? (Q/A)</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-configure-a-job-compute-for-unity-catalog-access-q-a/m-p/131056#M48975</link>
      <description>&lt;P&gt;If you need to access tables that are in a volume of Unity Catalog (UC), with the following configuration will work:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;targets:
  dev:
    mode: development
    default: true
    workspace:
      host: https://&amp;lt;workspace&amp;gt;.azuredatabricks.net/
    run_as:
      user_name: &amp;lt;user_email&amp;gt;
    resources:
      jobs:
        etl_process:
          job_clusters:
            - job_cluster_key: ${bundle.target}-${bundle.name}-job-cluster
              new_cluster:
                autoscale:
                  min_workers: 2
                  max_workers: 8
                spark_version: "14.3.x-scala2.12"
                driver_node_type_id: "Standard_F16s_v2"
                node_type_id: "Standard_L4s"
                data_security_mode: "SINGLE_USER"
                runtime_engine: "STANDARD"
                azure_attributes:
                  first_on_demand: 1
                  availability: SPOT_WITH_FALLBACK_AZURE
                  spot_bid_max_price: 100
                spark_conf:
                  spark.databricks.unityCatalog.enabled: "true"
                  spark.sql.catalog.unity: "com.databricks.sql.managedcatalog.UnityCatalogProvider"
                  spark.sql.catalog.spark_catalog: "org.apache.spark.sql.delta.catalog.DeltaCatalog"&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 05 Sep 2025 17:46:19 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-configure-a-job-compute-for-unity-catalog-access-q-a/m-p/131056#M48975</guid>
      <dc:creator>PabloCSD</dc:creator>
      <dc:date>2025-09-05T17:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure a Job-Compute for Unity Catalog Access? (Q/A)</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-configure-a-job-compute-for-unity-catalog-access-q-a/m-p/131080#M48977</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/106298"&gt;@PabloCSD&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Good day!&lt;BR /&gt;&lt;BR /&gt;Are you asking or like what are you expectations?&lt;BR /&gt;&lt;BR /&gt;Additions to this:&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;You cannot create or register tables (managed or external) with locations pointing to volumes, as this is explicitly not supported—tables must use tabular storage locations instead.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class=""&gt;To access data within UC volumes, use path-based methods (e.g., &lt;/SPAN&gt;&lt;SPAN class=""&gt;spark.read.load('/Volumes/catalog/schema/volume/path/to/file')&lt;/SPAN&gt;&lt;SPAN class=""&gt; or &lt;/SPAN&gt;&lt;SPAN class=""&gt;dbutils.fs.ls('/Volumes/...')&lt;/SPAN&gt;&lt;SPAN class=""&gt;), assuming the user specified in &lt;/SPAN&gt;&lt;SPAN class=""&gt;run_as&lt;/SPAN&gt;&lt;SPAN class=""&gt; has the required UC privileges like &lt;/SPAN&gt;&lt;SPAN class=""&gt;READ VOLUME&lt;/SPAN&gt;&lt;SPAN class=""&gt; or &lt;/SPAN&gt;&lt;SPAN class=""&gt;WRITE VOLUME&lt;/SPAN&gt;&lt;SPAN class=""&gt; on the volume.&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 06 Sep 2025 10:17:23 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-configure-a-job-compute-for-unity-catalog-access-q-a/m-p/131080#M48977</guid>
      <dc:creator>Khaja_Zaffer</dc:creator>
      <dc:date>2025-09-06T10:17:23Z</dc:date>
    </item>
  </channel>
</rss>

