FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory
–
I ran into an issue with my latest build/deployment. I had a successful build locally on my machine. Can you help me on how to solve this?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Accepted Answer
Hello,
In app platform you only have 8gb of disk space + RAM. If either of those or both combined go over 8gb the build will fail with the out of memory errors you are seeing.
Yes we agree to your query but since the heap memory is sort of dynamic and increases during the runtime.
If this is a react or similar app you may need to add a memory limit to the build script something like and also refer to the below options.
react-scripts --max_old_space_size=2048 build
You may need to add 2 environment variables with BUILD_SCOPE:
Key: NODE_OPTIONS Value: --max-old-space-size=4096
Key: GENERATE_SOURCEMAP Value: false
Hope this helps!
Cheers, Sri Charan
Appreciate this question is a little old but ran into the same issue, and this post comes up when searched.
I fixed this by adding the following as an Environment Variable within the relevant App service settings.
NODE_OPTIONS --max_old_space_size=4096
This was a sufficient increase for my build to work.
Hope this helps someone else experiencing failed builds.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.