<?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: parquet status exception in Data Warehouse</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/parquet-status-exception/m-p/4827829#M3744</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1340679" data-lia-user-login="tayloramy" class="lia-mention lia-mention-user"&gt;tayloramy&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, we aren't able anymore to access the step 1, since July'25 Update on Sunsetting Default Semantic Models.&lt;/P&gt;</description>
    <pubDate>Tue, 16 Sep 2025 18:44:56 GMT</pubDate>
    <dc:creator>bubbledep</dc:creator>
    <dc:date>2025-09-16T18:44:56Z</dc:date>
    <item>
      <title>parquet status exception</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/parquet-status-exception/m-p/4827787#M3742</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got the error "parquet status exception" when I tried to create a new semantic model using data from a Data Warehouse which I've ingested with data from a Gen2 Dataflow merged table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Previously I had success using that same logic&amp;nbsp;to create a new semantic model using data from a Data Warehouse which I've ingested with data from a Gen2 Dataflow data, but instead of a merged table I was using four tables (same data, just not merged yet).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Today I also noticed that the Fabric changed his layout, in particular I noticed that they added navigation bars on top of the screen to change between artifacts from the workspace, so maybe they are changing something?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be appreciated.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 17:48:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/parquet-status-exception/m-p/4827787#M3742</guid>
      <dc:creator>bubbledep</dc:creator>
      <dc:date>2025-09-16T17:48:03Z</dc:date>
    </item>
    <item>
      <title>Re: parquet status exception</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/parquet-status-exception/m-p/4827798#M3743</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="746328" data-lia-user-login="bubbledep" class="lia-mention lia-mention-user"&gt;bubbledep&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have run into "ParquetStatusException" a few times in Fabric, especially right after writing tables from Dataflow Gen2. In most cases it has been stale or inconsistent metadata on the default semantic model, or a schema quirk introduced by a merged output. Here are the things that usually clear it up for me:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;STRONG&gt;Quick reset of the default semantic model&lt;/STRONG&gt;&lt;BR /&gt;Open your Warehouse or Lakehouse, go to Reporting &amp;gt; Manage default semantic model, remove all tables, Confirm, then add them back and try again. Several folks have reported this resolves ParquetStatusException without any other changes: &lt;A href="https://community.fabric.microsoft.com/t5/Service/Unexpected-parquet-exception-occurred-Class/m-p/3593175" target="_blank" rel="noopener"&gt;community thread&lt;/A&gt;.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Recheck the merged output’s schema&lt;/STRONG&gt;&lt;BR /&gt;Merges can quietly create duplicate or odd column names, mixed data types, or unsupported types that write fine but fail when read by Direct Lake. In your Dataflow Gen2 step that produces the merged table:&lt;UL&gt;&lt;LI&gt;Make every column’s type explicit (no Any). Prefer text, whole number, fixed decimal, datetime, boolean.&lt;/LI&gt;&lt;LI&gt;Ensure every column name is unique and simple (no dots, slashes, or leading/trailing spaces).&lt;/LI&gt;&lt;LI&gt;Avoid very wide decimals or binary columns.&lt;/LI&gt;&lt;/UL&gt;If in doubt, write the four source tables again and do the merge in SQL as a Warehouse table or view to isolate the issue.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Force a clean table rewrite&lt;/STRONG&gt;&lt;BR /&gt;If the delta/parquet files got into a bad state during the previous write, create a brand-new output table name from the dataflow and point the semantic model at that fresh table. This often bypasses lingering file references that trigger the exception. Similar 404 BlobNotFound and parquet status cases have been reported and resolved with a fresh write: &lt;A href="https://community.fabric.microsoft.com/t5/Service/Semantic-Model-Direct-Lake-not-refreshing/m-p/3602698" target="_blank" rel="noopener"&gt;example report&lt;/A&gt;, &lt;A href="https://community.fabric.microsoft.com/t5/Service/Unexpected-parquet-exception-occurred-Class/m-p/3650287" target="_blank" rel="noopener"&gt;another thread&lt;/A&gt;.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Keep Direct Lake expectations in mind&lt;/STRONG&gt;&lt;BR /&gt;Direct Lake reads physical tables from OneLake. Model tables sourced from views fall back to DirectQuery. If you are mixing modes, a problematic table can surface only when it is read via Direct Lake. More context here: &lt;A href="https://medium.com/%40sdcdataAI/semantic-model-building-using-direct-lake-67831b3e626d" target="_blank" rel="noopener"&gt;Direct Lake notes&lt;/A&gt; and an overview of how Direct Lake reads delta/parquet under the hood: &lt;A href="https://sqlserverbi.blog/2024/03/29/direct-lake-and-directquery-in-the-age-of-fabric/" target="_blank" rel="noopener"&gt;overview&lt;/A&gt;.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;If it persists, capture details for support&lt;/STRONG&gt;&lt;BR /&gt;Grab the error time, workspace name, item ids, table name, and correlation id, and include the links above showing this as a known class of issue. That will help Support triage faster.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;On the UI change you noticed: yes, the navigation has been updated recently, but the ParquetStatusException itself usually tracks back to metadata or file state, not the UI.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;If you found this helpful, consider giving some Kudos. If I answered your question or solved your problem, mark this post as the solution.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 17:59:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/parquet-status-exception/m-p/4827798#M3743</guid>
      <dc:creator>tayloramy</dc:creator>
      <dc:date>2025-09-16T17:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: parquet status exception</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/parquet-status-exception/m-p/4827829#M3744</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1340679" data-lia-user-login="tayloramy" class="lia-mention lia-mention-user"&gt;tayloramy&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, we aren't able anymore to access the step 1, since July'25 Update on Sunsetting Default Semantic Models.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 18:44:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/parquet-status-exception/m-p/4827829#M3744</guid>
      <dc:creator>bubbledep</dc:creator>
      <dc:date>2025-09-16T18:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: parquet status exception</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/parquet-status-exception/m-p/4827846#M3745</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="746328" data-lia-user-login="bubbledep" class="lia-mention lia-mention-user"&gt;bubbledep&lt;/a&gt;,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Ah shoot, I knew I was forgetting something.&amp;nbsp;&lt;BR /&gt;Try refreshing the table in your non default semantic model or creating a new semantic model and see if it will refresh the metadata properly.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can also try using the REST API to refresh the endpoint metadata:&amp;nbsp;&lt;BR /&gt;&lt;A href="https://blog.fabric.microsoft.com/en-us/blog/refresh-sql-analytics-endpoint-metadata-rest-api-now-in-public-preview/" target="_blank"&gt;Refresh SQL analytics endpoint Metadata REST API (Preview) | Microsoft Fabric Blog | Microsoft Fabric&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;If you found this helpful, consider giving some Kudos. If I answered your question or solved your problem, mark this post as the solution.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 18:51:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/parquet-status-exception/m-p/4827846#M3745</guid>
      <dc:creator>tayloramy</dc:creator>
      <dc:date>2025-09-16T18:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: parquet status exception</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/parquet-status-exception/m-p/4827883#M3747</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1340679" data-lia-user-login="tayloramy" class="lia-mention lia-mention-user"&gt;tayloramy&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is that I cannot creat a new semantic model with that new merged table. Even creating a new Warehouse and re-merging the tables doesn't worked, unfortunately.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 20:04:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/parquet-status-exception/m-p/4827883#M3747</guid>
      <dc:creator>bubbledep</dc:creator>
      <dc:date>2025-09-16T20:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: parquet status exception</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/parquet-status-exception/m-p/4827886#M3748</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="746328" data-lia-user-login="bubbledep" class="lia-mention lia-mention-user"&gt;bubbledep&lt;/a&gt;,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I see, and refreshing the SQL endpoint via the API still doesn't allow the table to show up?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this case, this seems to be a bug. I'm out of ideas, can you open a ticket to MS to see if they can provide any support?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the meantime, we can wait and see if a CST will reply to this thread with any other ideas.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;If you found this helpful, consider giving some Kudos. If I answered your question or solved your problem, mark this post as the solution.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 20:33:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/parquet-status-exception/m-p/4827886#M3748</guid>
      <dc:creator>tayloramy</dc:creator>
      <dc:date>2025-09-16T20:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: parquet status exception</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/parquet-status-exception/m-p/4831321#M3772</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="746328" data-lia-user-login="bubbledep" class="lia-mention lia-mention-user"&gt;bubbledep&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is diffeence between parquet file ( Data Lake ) and parquet file with transaction-log ( _delta_log ) + Parquet file. I think so you were using Power BI Dataflow Gen 1 which is based on data lake, and this is the reason you see exception error in parquet file. Move your data to dataflow gen 2, and you see delta lake ( _delta_log + parquet file ) and you will not see any error.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Bhavesh&lt;/P&gt;</description>
      <pubDate>Sun, 21 Sep 2025 04:55:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/parquet-status-exception/m-p/4831321#M3772</guid>
      <dc:creator>BhaveshPatel</dc:creator>
      <dc:date>2025-09-21T04:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: parquet status exception</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/parquet-status-exception/m-p/4834339#M3791</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="746328" data-lia-user-login="bubbledep" class="lia-mention lia-mention-user"&gt;bubbledep&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Hi hope the information provided above helped you with the query if you are facing any issues try to manually sync schema changes between Gen2 Dataflow and the semantic model:&lt;/P&gt;
&lt;P&gt;Use the edit table&amp;nbsp;option in Power BI Direct Lake to manually include new fields.&lt;/P&gt;
&lt;P&gt;There is no automatic sync between Dataflow Gen2 and semantic models anymore.&lt;BR /&gt;&lt;BR /&gt;If issue still persists, try raising a support ticket-&amp;nbsp;&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/support/create-support-ticket" target="_blank"&gt;How to create a Fabric and Power BI Support ticket - Power BI | Microsoft Learn&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps!&lt;/P&gt;</description>
      <pubDate>Wed, 24 Sep 2025 12:35:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/parquet-status-exception/m-p/4834339#M3791</guid>
      <dc:creator>v-sdhruv</dc:creator>
      <dc:date>2025-09-24T12:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: parquet status exception</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/parquet-status-exception/m-p/4893811#M3986</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="746328" data-lia-user-login="bubbledep" class="lia-mention lia-mention-user"&gt;bubbledep&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The &lt;STRONG&gt;“Parquet status exception”&lt;/STRONG&gt; usually appears when Fabric tries to load a Warehouse table whose underlying &lt;STRONG&gt;delta/parquet files are in an inconsistent state&lt;/STRONG&gt;.&lt;BR /&gt;This often happens when the table was created or overwritten by a &lt;STRONG&gt;Gen2 Dataflow&lt;/STRONG&gt; merge step.&lt;/P&gt;&lt;H3&gt;✔ Why it happens&lt;/H3&gt;&lt;P&gt;Merged Gen2 Dataflow outputs can temporarily leave:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Corrupted parquet metadata&lt;/LI&gt;&lt;LI&gt;Incomplete transaction logs&lt;/LI&gt;&lt;LI&gt;Delta files with mismatched schema&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Semantic models are more sensitive to these issues than Warehouses, so they fail when reading the table.&lt;/P&gt;&lt;H3&gt;✔ Recommended steps to fix it&lt;/H3&gt;&lt;OL&gt;&lt;LI&gt;&lt;STRONG&gt;Refresh / re-run the Dataflow&lt;/STRONG&gt; to force Fabric to rewrite the delta files cleanly.&lt;/LI&gt;&lt;LI&gt;In the Warehouse, run:&lt;PRE&gt;VACUUM &amp;lt;table_name&amp;gt; RETAIN 0 HOURS;&lt;/PRE&gt;(this cleans orphan parquet files)&lt;/LI&gt;&lt;LI&gt;If you are using &lt;STRONG&gt;merge&lt;/STRONG&gt;, try switching to:&lt;UL&gt;&lt;LI&gt;&lt;EM&gt;Append-only&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;Or writing to a &lt;STRONG&gt;staging table&lt;/STRONG&gt;, then doing a Warehouse SQL MERGE into the final table.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Try creating the semantic model &lt;STRONG&gt;from the original 4 tables&lt;/STRONG&gt; again; if that works, then the issue is isolated to the merged table’s parquet state.&lt;/LI&gt;&lt;/OL&gt;&lt;H3&gt;✔ About the new UI layout&lt;/H3&gt;&lt;P&gt;Yes — Fabric rolled out a new &lt;STRONG&gt;top navigation bar&lt;/STRONG&gt; today.&lt;BR /&gt;UI changes often accompany backend updates, and some users are seeing temporary instability in Warehouse–Semantic Model integration.&lt;BR /&gt;So it is likely related.&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;If this helps, please &lt;STRONG&gt;mark the answer as Accepted&lt;/STRONG&gt;, and receive KUDO.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Dec 2025 05:14:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/parquet-status-exception/m-p/4893811#M3986</guid>
      <dc:creator>Nabha-Ahmed</dc:creator>
      <dc:date>2025-12-05T05:14:46Z</dc:date>
    </item>
  </channel>
</rss>

