-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gatsby-transform-json out of memory #34081
Comments
Hi, thanks for the issue! As you already pointed out the issue might be related to #33868 and as my colleague also wrote there it might be a good idea to try streaming instead. It's not something we can prioritize at the moment but we'd be happy to review a PR with this. Thanks! |
@LekoArts streaming might be the ultimate solution but I feel converting the loop to respect the async nature of |
Also just to make it clear, the same amount of nodes (same json file) is currently transformed in the gatsby 3 setup successfully which indicates that something might have changed upstream and causes the issue now. |
What changed with v4 is we now write data to LMDB which is more costly than writing to memory. The sync forEach loop doesn't allow LMDB to flush data to disk meaning in progress changes accumulate. Switching to async solves as does using e.g. process.nextTick to let the event loop run through again. |
@KyleAMathews ah that makes sense, didn't know LMDB is part of gatsby 4 by default – that's awesome! |
Preliminary Checks
Description
I'm running a 10k+ pages instance on gatsby cloud and in a dedicated branch I upgraded gatsby 4 dependencies for a while.
Unfortunately I never got it running due to high memory consumption.
Also my local builds on my machine consumed huge amounts of memory until I killed the process.
Long story short, today I had some time to dig into the issue, commented out all my plugins and isolated the issue.
The source of the issue is this line https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-transformer-json/src/gatsby-node.js#L63
A
.forEach
loop over the array items of a json file to create the individual json nodes. Whats the issue you may ask?Gatsbys createNode function which is used by
transformObject
returns awhereas
.forEach
The result is that the loop kicks off all 10k transformations right away instead of in some serial/concurrent loop which the code suggests.
The fix for that seems quite simple:
transformObject
as anasync function
awaits
thetransformObject
callI feel you could get fancy here and use something like .eachLimit to add some concurrency and speed it up again.
Reproduction Link
https://github.com/joernroeder/gatsby-json-memory
Steps to Reproduce
gatsby start
Expected Result
no multi GB memory usage :)
Actual Result
broken builds
Environment
Config Flags
No response
The text was updated successfully, but these errors were encountered: