<?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: write_deltalake with Python Notebook is creating an &amp;quot;Unidentified&amp;quot; folder in my lakeho in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/write-deltalake-with-Python-Notebook-is-creating-an-quot/m-p/4418833#M7361</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/787897"&gt;@joshuaking&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please confirm if the issue has been resolved? It would be greatly appreciated if you could share your insights. Feel free to reach out if you have any further questions.&amp;nbsp;&lt;SPAN&gt;please accept it as a solution and give a 'Kudos' so other members can easily find it.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 20 Feb 2025 04:34:10 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2025-02-20T04:34:10Z</dc:date>
    <item>
      <title>write_deltalake with Python Notebook is creating an "Unidentified" folder in my lakehouse.</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/write-deltalake-with-Python-Notebook-is-creating-an-quot/m-p/4403718#M7115</link>
      <description>&lt;P&gt;Hi there, all!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Due to the smaller size of our data at my organization, we decided to use Polars and PyArrow for our data transformation in lieu of PySpark, Spark SQL, and other distributed data processing applications.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After making a transformation and attempting to write a DataFrame, it drops off into this "Unidentified" folder instead of registering as a delta table. &lt;STRIKE&gt;I am able to query it from the SQL endpoint and&lt;/STRIKE&gt; read it from the "&lt;SPAN&gt;/lakehouse/default/Tables/" directory using pl.read_delta, but it doesn't seem to identify the delta table like it should (see image below)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="joshuaking_1-1739222466741.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1237025i7DB1A82789E12B44/image-size/medium?v=v2&amp;amp;px=400" role="button" title="joshuaking_1-1739222466741.png" alt="joshuaking_1-1739222466741.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried to write this code in numerous ways, such as:&lt;BR /&gt;- Referencing both the ABFS path and the local path (/&lt;SPAN&gt;lakehouse/default/Tables)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;- Kept dataframe as Polars DataFrame, and have tried switching it to PyArrow DF and Pandas DF.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;- Used polars' native write_delta, and the write_deltatable function in the deltalake package.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;- I've even tried Microsoft Fabric's "&lt;SPAN&gt;Write data to delta table" code snippet for the Python notebooks and that also places items under "Unidentified".&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;What am I doing wrong? I'm beginning to run out of ideas.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks a bunch for any help you all can offer.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2025 21:36:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/write-deltalake-with-Python-Notebook-is-creating-an-quot/m-p/4403718#M7115</guid>
      <dc:creator>joshuaking</dc:creator>
      <dc:date>2025-02-10T21:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: write_deltalake with Python Notebook is creating an "Unidentified" folder in my lakeho</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/write-deltalake-with-Python-Notebook-is-creating-an-quot/m-p/4403738#M7116</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/787897"&gt;@joshuaking&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is what I am thinking could happened.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;when writing a Delta table using Python functions like `write_deltalake` or Polars’ `write_delta`, the underlying data files are correctly created and queryable, yet the lakehouse metadata may not recognize or register the table properly. This can lead to the table being shown under an “Unidentified” folder&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Writing data to a specific path does not always automatically update the lakehouse catalog.&amp;nbsp;&lt;/P&gt;&lt;P&gt;try using ddl command like in your notebook&amp;nbsp;&lt;BR /&gt;`CREATE TABLE student USING DELTA LOCATION '/lakehouse/your_schema/your_path/student';`&lt;BR /&gt;to inform the system about the logical table name&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if this helps please accept the solution and give kudos&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2025 21:45:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/write-deltalake-with-Python-Notebook-is-creating-an-quot/m-p/4403738#M7116</guid>
      <dc:creator>nilendraFabric</dc:creator>
      <dc:date>2025-02-10T21:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: write_deltalake with Python Notebook is creating an "Unidentified" folder in my lakeho</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/write-deltalake-with-Python-Notebook-is-creating-an-quot/m-p/4403743#M7117</link>
      <description>&lt;P&gt;I'll give this a try and see what happens. While I'm working on it, do you know if the lakehouse catalog updates on its own periodically? If not, what do you assume would be the best way to register new tables automatically?&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2025 21:48:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/write-deltalake-with-Python-Notebook-is-creating-an-quot/m-p/4403743#M7117</guid>
      <dc:creator>joshuaking</dc:creator>
      <dc:date>2025-02-10T21:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: write_deltalake with Python Notebook is creating an "Unidentified" folder in my lakeho</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/write-deltalake-with-Python-Notebook-is-creating-an-quot/m-p/4403755#M7118</link>
      <description>&lt;P&gt;Yes it is automatic in Fabric&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When files in Delta format (Parquet + `_delta_log` folder) are placed in the managed area of a Lakehouse, Fabric automatically registers them as tables in the catalog.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In most thr cases properly structured delta file from Unidentified folder eventually moves to Table&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2025 22:00:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/write-deltalake-with-Python-Notebook-is-creating-an-quot/m-p/4403755#M7118</guid>
      <dc:creator>nilendraFabric</dc:creator>
      <dc:date>2025-02-10T22:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: write_deltalake with Python Notebook is creating an "Unidentified" folder in my lakeho</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/write-deltalake-with-Python-Notebook-is-creating-an-quot/m-p/4407839#M7174</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/787897"&gt;@joshuaking&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Thanks for reaching out to the Microsoft fabric community forum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/913195"&gt;@nilendraFabric&lt;/a&gt;&amp;nbsp; mentioned in his post, could you confirm whether it resolved your issue? Please feel free to reach out if you have any further questions. If the response addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thankyou.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Feb 2025 00:46:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/write-deltalake-with-Python-Notebook-is-creating-an-quot/m-p/4407839#M7174</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-02-13T00:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: write_deltalake with Python Notebook is creating an "Unidentified" folder in my lakeho</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/write-deltalake-with-Python-Notebook-is-creating-an-quot/m-p/4412963#M7254</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/787897"&gt;@joshuaking&lt;/a&gt;&amp;nbsp;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2025 04:17:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/write-deltalake-with-Python-Notebook-is-creating-an-quot/m-p/4412963#M7254</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-02-17T04:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: write_deltalake with Python Notebook is creating an "Unidentified" folder in my lakeho</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/write-deltalake-with-Python-Notebook-is-creating-an-quot/m-p/4418833#M7361</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/787897"&gt;@joshuaking&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please confirm if the issue has been resolved? It would be greatly appreciated if you could share your insights. Feel free to reach out if you have any further questions.&amp;nbsp;&lt;SPAN&gt;please accept it as a solution and give a 'Kudos' so other members can easily find it.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2025 04:34:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/write-deltalake-with-Python-Notebook-is-creating-an-quot/m-p/4418833#M7361</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-02-20T04:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: write_deltalake with Python Notebook is creating an "Unidentified" folder in my lakeho</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/write-deltalake-with-Python-Notebook-is-creating-an-quot/m-p/4749874#M10540</link>
      <description>&lt;P&gt;For those wanting to use Polars you can write to your Lakehouse with &lt;EM&gt;write_delta&lt;/EM&gt;&amp;nbsp;by using the full URL. For example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import polars as pl

data = {"a": [1, 2], "b": [3, 4]}
df = pl.DataFrame(data)

df.write_delta("abfss://workspace-name@onelake.dfs.fabric.microsoft.com/lakehouse-name.Lakehouse/Tables/table-name")&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 01 Jul 2025 14:46:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/write-deltalake-with-Python-Notebook-is-creating-an-quot/m-p/4749874#M10540</guid>
      <dc:creator>Thibauld_c</dc:creator>
      <dc:date>2025-07-01T14:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: write_deltalake with Python Notebook is creating an "Unidentified" folder in my lakeho</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/write-deltalake-with-Python-Notebook-is-creating-an-quot/m-p/4832798#M12466</link>
      <description>&lt;P&gt;When writing to delta tables in lakehouse using Python notebooks, you have to provide the full name of table, including the schema name. So if you want to register your table to `dbo`, your full path should be:&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;abfss://&amp;lt;ws&amp;gt;@onelake.dfs.fabric.microsoft.com/&amp;lt;lh&amp;gt;.Lakehouse/Tables/dbo/&amp;lt;table-name&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Otherwise, it would register to an unidentified schema.&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 23 Sep 2025 00:48:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/write-deltalake-with-Python-Notebook-is-creating-an-quot/m-p/4832798#M12466</guid>
      <dc:creator>Rags2596</dc:creator>
      <dc:date>2025-09-23T00:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: write_deltalake with Python Notebook is creating an "Unidentified" folder in my lakeho</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/write-deltalake-with-Python-Notebook-is-creating-an-quot/m-p/4839852#M12655</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1360023"&gt;@Rags2596&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you for your helpful response.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Oct 2025 11:34:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/write-deltalake-with-Python-Notebook-is-creating-an-quot/m-p/4839852#M12655</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-10-01T11:34:35Z</dc:date>
    </item>
  </channel>
</rss>

