Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.0k views
in Technique[技术] by (71.8m points)

aws lambda - Serverless Framework: FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory

When trying to deploy my application with Serverless Framework using the properties:

package:
  individually: true

i got the follow error:

FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory

My NodeJS version is 10..

question from:https://stackoverflow.com/questions/65903505/serverless-framework-fatal-error-ineffective-mark-compacts-near-heap-limit-all

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Some people said to enhance the NodeJS memory with the code:

export NODE_OPTIONS="--max-old-space-size=8192"

But i had no happy result.

I just ended up this error installing a newer version of NodeJS. In my case v14.15.4


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...