<?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: Issues with Querying and writing into a External Storage in a new databricks workspace in Data Governance</title>
    <link>https://community.databricks.com/t5/data-governance/issues-with-querying-and-writing-into-a-external-storage-in-a/m-p/119793#M2483</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/165173"&gt;@dipanjannet&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;This could be due to the code falling back to the hive metastore, which could be due to a number of reasons, but the first thing that caught my eye was that the table name in your saveAsTable() call isn't fully qualified. Can you add the catalog name to the function call like&amp;nbsp;&lt;SPAN&gt;saveAsTable&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"catalog_name.schema_name.table_name"&lt;/SPAN&gt;&lt;SPAN&gt;), and if you haven't created a catalog yet I would start there.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 20 May 2025 17:08:20 GMT</pubDate>
    <dc:creator>Shua42</dc:creator>
    <dc:date>2025-05-20T17:08:20Z</dc:date>
    <item>
      <title>Issues with Querying and writing into a External Storage in a new databricks workspace</title>
      <link>https://community.databricks.com/t5/data-governance/issues-with-querying-and-writing-into-a-external-storage-in-a/m-p/119720#M2482</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;We have recently created a databricks with UC enabled. All the VNET Pairing is completed. Now, while I am trying to create a table [Managed] under a catalog / schema - I am not able to query the table. I am getting below error&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;org.apache.hadoop.hive.ql.metadata.HiveException: java.lang.RuntimeException: Unable to instantiate org.apache.hadoop.hive.metastore.HiveMetaStoreClient&lt;/SPAN&gt; &amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, while I am trying to write a Dataframe into an External location, I am seeing the same issue as mentioned. Any idea what is wrong here? Please note - as I will be using Unity catalog, nothing has been done (configuration) with respect to hive_metastore. Is this some hive_metastore related configuration issue ?&lt;/P&gt;&lt;P&gt;my write code&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;# Write the DataFrame to the specified Delta table&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;df_out.write.&lt;/SPAN&gt;&lt;SPAN&gt;format&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"delta"&lt;/SPAN&gt;&lt;SPAN&gt;).&lt;/SPAN&gt;&lt;SPAN&gt;mode&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"overwrite"&lt;/SPAN&gt;&lt;SPAN&gt;).&lt;/SPAN&gt;&lt;SPAN&gt;option&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"path"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"abfss://container@storageaccountname.dfs.core.windows.net/test_data/tbd/"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;).&lt;/SPAN&gt;&lt;SPAN&gt;saveAsTable&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"schema_name.table_name"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 20 May 2025 11:27:27 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-governance/issues-with-querying-and-writing-into-a-external-storage-in-a/m-p/119720#M2482</guid>
      <dc:creator>dipanjannet</dc:creator>
      <dc:date>2025-05-20T11:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Querying and writing into a External Storage in a new databricks workspace</title>
      <link>https://community.databricks.com/t5/data-governance/issues-with-querying-and-writing-into-a-external-storage-in-a/m-p/119793#M2483</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/165173"&gt;@dipanjannet&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;This could be due to the code falling back to the hive metastore, which could be due to a number of reasons, but the first thing that caught my eye was that the table name in your saveAsTable() call isn't fully qualified. Can you add the catalog name to the function call like&amp;nbsp;&lt;SPAN&gt;saveAsTable&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"catalog_name.schema_name.table_name"&lt;/SPAN&gt;&lt;SPAN&gt;), and if you haven't created a catalog yet I would start there.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 May 2025 17:08:20 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-governance/issues-with-querying-and-writing-into-a-external-storage-in-a/m-p/119793#M2483</guid>
      <dc:creator>Shua42</dc:creator>
      <dc:date>2025-05-20T17:08:20Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Querying and writing into a External Storage in a new databricks workspace</title>
      <link>https://community.databricks.com/t5/data-governance/issues-with-querying-and-writing-into-a-external-storage-in-a/m-p/119794#M2484</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/154481"&gt;@Shua42&lt;/a&gt;&amp;nbsp;- Actually I was using catalog only. The code is little modified one. Can you please help me understand - what do you mean by this - "&lt;SPAN&gt;This could be due to the code falling back to the hive metastore,&amp;nbsp;&lt;/SPAN&gt;"&lt;/P&gt;</description>
      <pubDate>Tue, 20 May 2025 17:16:30 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-governance/issues-with-querying-and-writing-into-a-external-storage-in-a/m-p/119794#M2484</guid>
      <dc:creator>dipanjannet</dc:creator>
      <dc:date>2025-05-20T17:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Querying and writing into a External Storage in a new databricks workspace</title>
      <link>https://community.databricks.com/t5/data-governance/issues-with-querying-and-writing-into-a-external-storage-in-a/m-p/119798#M2485</link>
      <description>&lt;P&gt;&lt;SPAN&gt;The legacy Databricks Hive metastore is used as a fallback for queries when Unity Catalog is unavailable or when specific external locations are configured with fallback mode enabled, so it could be something in the configuration here. Were you able to create a catalog and schema in UC before writing the table?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 May 2025 18:00:08 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-governance/issues-with-querying-and-writing-into-a-external-storage-in-a/m-p/119798#M2485</guid>
      <dc:creator>Shua42</dc:creator>
      <dc:date>2025-05-20T18:00:08Z</dc:date>
    </item>
  </channel>
</rss>

