<?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 increase file size in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/increase-file-size/m-p/4999647#M15005</link>
    <description>&lt;P&gt;Hi There, Within fabric I am using metadata driven framework and creating log files (.txt). This is a dynamic framework to populate multiple tables and writes into log file to indicate what each step is doing and also to indicate where failure as occured (if any). The log file currently works fine if the filesize is upto100kb but if the filesize is more than 100KB then nothing is written after the filesize reaches 100KB. How to increase the filesize ?&lt;/P&gt;</description>
    <pubDate>Fri, 06 Feb 2026 21:00:33 GMT</pubDate>
    <dc:creator>KrishnaMoola</dc:creator>
    <dc:date>2026-02-06T21:00:33Z</dc:date>
    <item>
      <title>increase file size</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/increase-file-size/m-p/4999647#M15005</link>
      <description>&lt;P&gt;Hi There, Within fabric I am using metadata driven framework and creating log files (.txt). This is a dynamic framework to populate multiple tables and writes into log file to indicate what each step is doing and also to indicate where failure as occured (if any). The log file currently works fine if the filesize is upto100kb but if the filesize is more than 100KB then nothing is written after the filesize reaches 100KB. How to increase the filesize ?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Feb 2026 21:00:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/increase-file-size/m-p/4999647#M15005</guid>
      <dc:creator>KrishnaMoola</dc:creator>
      <dc:date>2026-02-06T21:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: increase file size</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/increase-file-size/m-p/4999928#M15008</link>
      <description>&lt;P&gt;This behavior is not something that can be fixed by increasing a configurable file size limit. It is a limitation of how Microsoft Fabric handles file writes in OneLake, especially for append-style operations on text files.&lt;/P&gt;&lt;P&gt;In Fabric, continuously appending to a single .txt file is not a supported or reliable pattern. While small append operations may work initially, once the file grows beyond a certain size (around 100 KB in this case), further writes can silently fail without throwing an error. This is expected behavior due to the underlying storage and write semantics rather than a user-side configuration issue.&lt;/P&gt;&lt;P&gt;There is no setting in Fabric to increase this limit.&lt;/P&gt;&lt;P&gt;Recommended workarounds are:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Avoid a single growing log file&lt;/STRONG&gt;&lt;BR /&gt;Instead of appending to one .txt file, generate multiple smaller log files (for example, per pipeline run, per batch, or per timestamp). This aligns with Fabric and OneLake design principles.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Use overwrite instead of append&lt;/STRONG&gt;&lt;BR /&gt;If a single file is required, read the existing content, append new log entries in memory, and overwrite the file entirely. Overwrite operations are more stable than append operations in Fabric.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Use a table-based logging approach (best practice)&lt;/STRONG&gt;&lt;BR /&gt;Store logs in a Lakehouse or Delta table with columns such as:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Timestamp&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Pipeline / Process name&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Step name&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Log level&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Message&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Run ID&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;This approach removes file size limitations, supports querying and monitoring, and is the recommended enterprise logging pattern in Fabric.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;In summary, Fabric is not designed for application-style, continuously growing text log files. The most stable and scalable solution is to switch to partitioned log files or table-based logging rather than trying to increase the file size of a single .txt log.&lt;/P&gt;</description>
      <pubDate>Sat, 07 Feb 2026 10:43:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/increase-file-size/m-p/4999928#M15008</guid>
      <dc:creator>bariscihan</dc:creator>
      <dc:date>2026-02-07T10:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: increase file size</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/increase-file-size/m-p/5000199#M15013</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1447317"&gt;@KrishnaMoola&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is expected behavior. In Microsoft Fabric, dbutils.fs.put() has a &lt;STRONG&gt;hard limit of 100 KB per write&lt;/STRONG&gt; and is intended only for small files such as configuration or metadata. When the file size exceeds this limit, no further content is written. The limit &lt;STRONG&gt;cannot be increased&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Microsoft documentation&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;dbutils.fs.put() is designed for small files only:&lt;BR /&gt;&lt;A target="_new" rel="noopener"&gt;https://learn.microsoft.com/azure/databricks/dev-tools/databricks-utils#dbutilsfs&lt;/A&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Fabric Lakehouse file writing best practices:&lt;BR /&gt;&lt;A target="_new" rel="noopener"&gt;https://learn.microsoft.com/fabric/data-engineering/lakehouse-overview&lt;/A&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Recommended approach&lt;/STRONG&gt;&lt;BR /&gt;Use Spark DataFrame or RDD writes (or log to a Lakehouse table) to handle larger or growing log files, as these scale without file-size limitations&lt;/P&gt;</description>
      <pubDate>Sat, 07 Feb 2026 22:05:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/increase-file-size/m-p/5000199#M15013</guid>
      <dc:creator>Olufemi7</dc:creator>
      <dc:date>2026-02-07T22:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: increase file size</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/increase-file-size/m-p/5005579#M15058</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1447317"&gt;@KrishnaMoola&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN data-teams="true"&gt;We wanted to follow up to check if you’ve had an opportunity to review the previous responses. If you require further assistance, please don’t hesitate to let us know.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Feb 2026 12:57:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/increase-file-size/m-p/5005579#M15058</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2026-02-11T12:57:03Z</dc:date>
    </item>
    <item>
      <title>Re: increase file size</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/increase-file-size/m-p/5006941#M15073</link>
      <description>&lt;P&gt;I have already done all the development and now need to make lot of changes to convert into a table. It would have been good if we had the option to increase the filesize then it would have been good.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Feb 2026 08:32:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/increase-file-size/m-p/5006941#M15073</guid>
      <dc:creator>KrishnaMoola</dc:creator>
      <dc:date>2026-02-12T08:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: increase file size</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/increase-file-size/m-p/5040216#M15127</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1447317"&gt;@KrishnaMoola&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN data-teams="true"&gt;Following up to confirm if the earlier responses addressed your query. If not, please share your questions and we’ll assist further.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Feb 2026 12:35:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/increase-file-size/m-p/5040216#M15127</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2026-02-16T12:35:32Z</dc:date>
    </item>
  </channel>
</rss>

