Reputation: 61
I'm currently running a basic website on an amazon EC2 t1.micro instance.
The application is built using meteor js.
After a while I get the following error in the errors log file and the server crashes:
FATAL ERROR: Committing semi space failed. Allocation failed - process out of memory
Could somebody help me with this issue? Have I misconfigured something?
Upvotes: 2
Views: 3344
Reputation: 5923
Have you tried increasing the allocated memory, e.g. running node with --max-old-space-size=4096
?
Upvotes: 1