Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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.
Error in Micrsoft Fabric Experience:
Development workload startup failure.
The development workload startup has failed due to an inactive local server or a configuration issue.
Solution:
The development server crashes with Out-of-Memory (OOM) errors when running the Fabric Extensibility Toolkit on standard 4-core Codespace machines.
Webpack bundling for this toolkit is memory-intensive. On 4-core machines (which typically only have 8GB RAM), the default Node.js heap limit and source map generation exceed the available system memory.
Updated the start script in package.json to allocate more memory to the Node process.
File: package.json
Change: Increased --max-old-space-size from 4GB to 6GB.
// Before "start:codespace": "node --max-old-space-size=4096 ..." // After "start:codespace": "node --max-old-space-size=6144 ..."
Disabled source maps specifically when running inside a Codespace environment to reduce the memory footprint by approximately 2GB.
File: Workload/webpack.dev.js
Change: Added a check for the CODESPACES environment variable.
// Before devtool: 'source-map' // After devtool: process.env.CODESPACES ? false : 'source-map'
Performed a manual cleanup of leftover build assets and cache from previous failed setup attempts to ensure a clean slate.
The Dev server and gateway now start successfully on 4-core machines without memory crashes.
[!TIP] Recommendation: While these fixes stabilize the 4-core experience, upgrading to an 8-core machine is still recommended for optimal build speed and performance.
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?
Please leave a Kudos or accept it as a Solution!
What is your question? Or are you looking for the Blog section? https://community.fabric.microsoft.com/t5/Fabric-community-blogs/ct-p/fabricblogs