<?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: Fabric Extensibility Toolkit: Development workload startup failure in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-Extensibility-Toolkit-Development-workload-startup/m-p/4916647#M14528</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1239428"&gt;@shas902&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As our super user &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/100342"&gt;@lbendlin&lt;/a&gt;, suggested refer below blog post section so that other community members can benefit from your experience more easily.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Power-BI-Community-Blog/bg-p/community_blog" target="_blank" rel="noopener"&gt;https://community.fabric.microsoft.com/t5/Power-BI-Community-Blog/bg-p/community_blog&amp;nbsp;&lt;/A&gt;&lt;/SPAN&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;&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;</description>
    <pubDate>Mon, 12 Jan 2026 11:53:06 GMT</pubDate>
    <dc:creator>v-prasare</dc:creator>
    <dc:date>2026-01-12T11:53:06Z</dc:date>
    <item>
      <title>Fabric Extensibility Toolkit: Development workload startup failure</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-Extensibility-Toolkit-Development-workload-startup/m-p/4912178#M14434</link>
      <description>&lt;P&gt;I was replicating youtube video demo to create Hello World workload. On my personal free GitHub account I had limitation to allocate machine type to codespace only upto 4 cores while requirement was 8 cores. I asked GitHub Copilot to fix the repo files for a 4 core machine type.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Error in Micrsoft Fabric Experience:&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Development workload startup failure.&lt;BR /&gt;&lt;/SPAN&gt;The development workload startup has failed due to an inactive local server or a configuration issue.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Solution:&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;H2&gt;Fixed: OOM Errors on 4-Core Codespaces&lt;/H2&gt;&lt;H3&gt;&lt;STRONG&gt;The Problem&lt;/STRONG&gt;&lt;/H3&gt;&lt;P&gt;The development server crashes with &lt;STRONG&gt;Out-of-Memory (OOM)&lt;/STRONG&gt; errors when running the Fabric Extensibility Toolkit on standard 4-core Codespace machines.&lt;/P&gt;&lt;H3&gt;&lt;STRONG&gt;Root Cause&lt;/STRONG&gt;&lt;/H3&gt;&lt;P&gt;Webpack bundling for this toolkit is memory-intensive. On 4-core machines (which typically only have &lt;STRONG&gt;8GB RAM&lt;/STRONG&gt;), the default Node.js heap limit and source map generation exceed the available system memory.&lt;/P&gt;&lt;HR /&gt;&lt;H3&gt;&lt;STRONG&gt;Solution Applied&lt;/STRONG&gt;&lt;/H3&gt;&lt;H4&gt;&lt;STRONG&gt;1. Increased Node Heap Size&lt;/STRONG&gt;&lt;/H4&gt;&lt;P&gt;Updated the start script in package.json to allocate more memory to the Node process.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;File:&lt;/STRONG&gt; package.json&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Change:&lt;/STRONG&gt; Increased --max-old-space-size from &lt;STRONG&gt;4GB&lt;/STRONG&gt; to &lt;STRONG&gt;6GB&lt;/STRONG&gt;.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;JSON&lt;/SPAN&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;// Before&lt;/SPAN&gt;
&lt;SPAN class=""&gt;"start:codespace"&lt;/SPAN&gt;: &lt;SPAN class=""&gt;"node --max-old-space-size=4096 ..."&lt;/SPAN&gt;

&lt;SPAN class=""&gt;// After&lt;/SPAN&gt;
&lt;SPAN class=""&gt;"start:codespace"&lt;/SPAN&gt;: &lt;SPAN class=""&gt;"node --max-old-space-size=6144 ..."&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;H4&gt;&lt;STRONG&gt;2. Conditional Source Maps&lt;/STRONG&gt;&lt;/H4&gt;&lt;P&gt;Disabled source maps specifically when running inside a Codespace environment to reduce the memory footprint by approximately &lt;STRONG&gt;2GB&lt;/STRONG&gt;.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;File:&lt;/STRONG&gt; Workload/webpack.dev.js&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Change:&lt;/STRONG&gt; Added a check for the CODESPACES environment variable.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;JavaScript&lt;/SPAN&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;// Before&lt;/SPAN&gt;
&lt;SPAN class=""&gt;devtool&lt;/SPAN&gt;: &lt;SPAN class=""&gt;'source-map'&lt;/SPAN&gt; 

&lt;SPAN class=""&gt;// After&lt;/SPAN&gt;
&lt;SPAN class=""&gt;devtool&lt;/SPAN&gt;: process.env.CODESPACES ? &lt;SPAN class=""&gt;false&lt;/SPAN&gt; : &lt;SPAN class=""&gt;'source-map'&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;H4&gt;&lt;STRONG&gt;3. Environment Cleanup&lt;/STRONG&gt;&lt;/H4&gt;&lt;P&gt;Performed a manual cleanup of leftover build assets and cache from previous failed setup attempts to ensure a clean slate.&lt;/P&gt;&lt;HR /&gt;&lt;H3&gt;&lt;STRONG&gt;Result&lt;/STRONG&gt;&lt;/H3&gt;&lt;P&gt;The Dev server and gateway now start successfully on 4-core machines without memory crashes.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;[!TIP] &lt;STRONG&gt;Recommendation:&lt;/STRONG&gt; While these fixes stabilize the 4-core experience, upgrading to an &lt;STRONG&gt;8-core machine&lt;/STRONG&gt; is still recommended for optimal build speed and performance.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Sun, 04 Jan 2026 23:21:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-Extensibility-Toolkit-Development-workload-startup/m-p/4912178#M14434</guid>
      <dc:creator>shas902</dc:creator>
      <dc:date>2026-01-04T23:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric Extensibility Toolkit: Development workload startup failure</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-Extensibility-Toolkit-Development-workload-startup/m-p/4912666#M14448</link>
      <description>&lt;P&gt;What is your question?&amp;nbsp; Or are you looking for the Blog section?&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/Fabric-community-blogs/ct-p/fabricblogs" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Fabric-community-blogs/ct-p/fabricblogs&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 16:26:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-Extensibility-Toolkit-Development-workload-startup/m-p/4912666#M14448</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2026-01-05T16:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric Extensibility Toolkit: Development workload startup failure</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-Extensibility-Toolkit-Development-workload-startup/m-p/4912736#M14450</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1239428"&gt;@shas902&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for posting, however it is difficult to interpret if you're referring to an issue with the Data Engineering experience of Microsoft Fabric, which is what the forum is for. Woud you be able to expand on your post please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please leave a &lt;STRONG&gt;Kudos&lt;/STRONG&gt; or accept it as a &lt;STRONG&gt;Solution&lt;/STRONG&gt;!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 18:35:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-Extensibility-Toolkit-Development-workload-startup/m-p/4912736#M14450</guid>
      <dc:creator>deborshi_nag</dc:creator>
      <dc:date>2026-01-05T18:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric Extensibility Toolkit: Development workload startup failure</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-Extensibility-Toolkit-Development-workload-startup/m-p/4916647#M14528</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1239428"&gt;@shas902&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As our super user &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/100342"&gt;@lbendlin&lt;/a&gt;, suggested refer below blog post section so that other community members can benefit from your experience more easily.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Power-BI-Community-Blog/bg-p/community_blog" target="_blank" rel="noopener"&gt;https://community.fabric.microsoft.com/t5/Power-BI-Community-Blog/bg-p/community_blog&amp;nbsp;&lt;/A&gt;&lt;/SPAN&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;&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;</description>
      <pubDate>Mon, 12 Jan 2026 11:53:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-Extensibility-Toolkit-Development-workload-startup/m-p/4916647#M14528</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2026-01-12T11:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric Extensibility Toolkit: Development workload startup failure</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-Extensibility-Toolkit-Development-workload-startup/m-p/4919221#M14574</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1239428"&gt;@shas902&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Since we haven’t heard back from you yet, could you please let us know whether you were able to post this in the Community Blog section? If you need any help please reach out us in Fabric community forum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Prashanth&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jan 2026 08:48:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-Extensibility-Toolkit-Development-workload-startup/m-p/4919221#M14574</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2026-01-16T08:48:47Z</dc:date>
    </item>
  </channel>
</rss>

