<?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: CommitFailedError:Writer features must be specified for writerversion &amp;gt;= 7, please specify: T in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/CommitFailedError-Writer-features-must-be-specified-for/m-p/4690156#M9253</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1253869"&gt;@fabric_1&lt;/a&gt;,&lt;/P&gt;
&lt;P class="" data-start="1516" data-end="1603"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="" data-start="395" data-end="564"&gt;Delta Lake protocol Writer Version 7+ introduces new features that require explicit declaration of feature usage. One such feature is TimestampWithoutTimezone.&lt;/P&gt;
&lt;P class="" data-start="566" data-end="766"&gt;Even though you've localized the timestamp to remove timezone, Delta Lake still expects you to declare that you're using timezone-less timestamps explicitly in the write_features parameter.&lt;/P&gt;
&lt;P class="" data-start="566" data-end="766"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="" data-start="566" data-end="766"&gt;If you are writing timestamp columns frequently and want to future-proof your pipeline:&lt;/P&gt;
&lt;P class="" data-start="1665" data-end="1753"&gt;Always set write_features = ["&lt;SPAN&gt;TimestampWithoutTimezone&lt;/SPAN&gt;"] when using writer version ≥ 7.&lt;/P&gt;
&lt;P class="" data-start="1665" data-end="1753"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="" data-start="1665" data-end="1753"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="" data-start="1665" data-end="1753"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="" data-start="1665" data-end="1753"&gt;Thanks,&lt;/P&gt;
&lt;P class="" data-start="1665" data-end="1753"&gt;Prashanth Are&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 13 May 2025 06:56:03 GMT</pubDate>
    <dc:creator>v-prasare</dc:creator>
    <dc:date>2025-05-13T06:56:03Z</dc:date>
    <item>
      <title>CommitFailedError:Writer features must be specified for writerversion &gt;= 7, please specify: Timest**</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/CommitFailedError-Writer-features-must-be-specified-for/m-p/4689548#M9243</link>
      <description>&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using the below code to write data to append data to a deltatable using a fabric notebook using pure python,&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;FONT color="#339966"&gt;&lt;SPAN&gt;write_deltalake(&lt;/SPAN&gt;&lt;SPAN&gt;table_path&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;data&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;df&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;'append'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;schema_mode&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;'merge'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;engine&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;'rust'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;storage_options&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;storage_options&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;SPAN&gt;I have a column that is in timestamp format and I have already removed the timezone from it.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;FONT color="#339966"&gt;&lt;SPAN&gt;df&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;'_createdAt'&lt;/SPAN&gt;&lt;SPAN&gt;] = &lt;/SPAN&gt;&lt;SPAN&gt;pd&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;to_datetime&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;df&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;'_createdAt'&lt;/SPAN&gt;&lt;SPAN&gt;]).dt.tz_localize(&lt;/SPAN&gt;&lt;SPAN&gt;None&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;However, I am facing the below issue and I am unable to append the data sucessfully.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993300"&gt;CommitFailedError: Writer features must be specified for writerversion &amp;gt;= 7, please specify:&lt;SPAN&gt;TimestampWithoutTimezone&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;SPAN&gt;How do I specify writer features.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;SPAN&gt;Kindly help!&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 May 2025 16:23:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/CommitFailedError-Writer-features-must-be-specified-for/m-p/4689548#M9243</guid>
      <dc:creator>fabric_1</dc:creator>
      <dc:date>2025-05-12T16:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: CommitFailedError:Writer features must be specified for writerversion &gt;= 7, please specify: T</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/CommitFailedError-Writer-features-must-be-specified-for/m-p/4690156#M9253</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1253869"&gt;@fabric_1&lt;/a&gt;,&lt;/P&gt;
&lt;P class="" data-start="1516" data-end="1603"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="" data-start="395" data-end="564"&gt;Delta Lake protocol Writer Version 7+ introduces new features that require explicit declaration of feature usage. One such feature is TimestampWithoutTimezone.&lt;/P&gt;
&lt;P class="" data-start="566" data-end="766"&gt;Even though you've localized the timestamp to remove timezone, Delta Lake still expects you to declare that you're using timezone-less timestamps explicitly in the write_features parameter.&lt;/P&gt;
&lt;P class="" data-start="566" data-end="766"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="" data-start="566" data-end="766"&gt;If you are writing timestamp columns frequently and want to future-proof your pipeline:&lt;/P&gt;
&lt;P class="" data-start="1665" data-end="1753"&gt;Always set write_features = ["&lt;SPAN&gt;TimestampWithoutTimezone&lt;/SPAN&gt;"] when using writer version ≥ 7.&lt;/P&gt;
&lt;P class="" data-start="1665" data-end="1753"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="" data-start="1665" data-end="1753"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="" data-start="1665" data-end="1753"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="" data-start="1665" data-end="1753"&gt;Thanks,&lt;/P&gt;
&lt;P class="" data-start="1665" data-end="1753"&gt;Prashanth Are&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 06:56:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/CommitFailedError-Writer-features-must-be-specified-for/m-p/4690156#M9253</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-05-13T06:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: CommitFailedError:Writer features must be specified for writerversion &gt;= 7, please specify: T</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/CommitFailedError-Writer-features-must-be-specified-for/m-p/4690394#M9257</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/845241"&gt;@v-prasare&lt;/a&gt;, How do we actually specify it in the notebook?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried&amp;nbsp;&lt;SPAN&gt;write_features&lt;/SPAN&gt;&lt;SPAN&gt; = [&lt;/SPAN&gt;&lt;SPAN&gt;"TimestampWithoutTimezone"&lt;/SPAN&gt;&lt;SPAN&gt;], this still doesn't seem to work.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 09:01:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/CommitFailedError-Writer-features-must-be-specified-for/m-p/4690394#M9257</guid>
      <dc:creator>fabric_1</dc:creator>
      <dc:date>2025-05-13T09:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: CommitFailedError:Writer features must be specified for writerversion &gt;= 7, please specify: T</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/CommitFailedError-Writer-features-must-be-specified-for/m-p/4701672#M9470</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1253869"&gt;@fabric_1&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In this scenario i suggest you to raise a support ticket here. so, that they can assit you in addressing the issue you are facing. please follow below link on how to raise a support ticket:&lt;/P&gt;
&lt;P&gt;&lt;A class="" title="https://learn.microsoft.com/en-us/power-bi/support/create-support-ticket" href="https://learn.microsoft.com/en-us/power-bi/support/create-support-ticket" target="_blank" rel="noreferrer noopener" aria-label="Link How to create a Fabric and Power BI Support ticket - Power BI | Microsoft Learn"&gt;How to create a Fabric and Power BI Support ticket - Power BI | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Prashanth Are&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;MS Fabric community support&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post helps, then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&amp;nbsp;to help the other members find it more quickly and give&amp;nbsp;&lt;STRONG&gt;Kudos&amp;nbsp;if helped you resolve your query&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 12:19:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/CommitFailedError-Writer-features-must-be-specified-for/m-p/4701672#M9470</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-05-21T12:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: CommitFailedError:Writer features must be specified for writerversion &gt;= 7, please specify: T</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/CommitFailedError-Writer-features-must-be-specified-for/m-p/4713260#M9765</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi, We are following up once again regarding your query. Could you please confirm if the issue has been resolved through the support ticket with Microsoft?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If the issue has been resolved, we kindly request you to share the resolution or key insights here to help others in the community. If we don’t hear back, we’ll go ahead and close this thread.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Should you need further assistance in the future, we encourage you to reach out via the Microsoft Fabric Community Forum. We’ll be happy to help.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for your understanding and participation.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2025 05:19:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/CommitFailedError-Writer-features-must-be-specified-for/m-p/4713260#M9765</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-05-30T05:19:10Z</dc:date>
    </item>
  </channel>
</rss>

