-
Notifications
You must be signed in to change notification settings - Fork 914
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
10K editions #39
Comments
It appears that the application does a lot of work in memory, as evidenced by the output not populating and the metadata file not being written until everything else is done. You would probably need a ton of RAM to reach 10,000 files in one run. I tried for 1,000 and my node crashed at 309, and my computer has 32 GB RAM. If batching them is acceptable to you, this might be the only solution without buying a massively powerful computer or minting via contract. Remember to copy batches somewhere else if you do plan to do it this way, as this application wipes the output directory every run. |
The metadata for 10K would be less than 10M so that can't be it. It looks like it's just not waiting for things that are async, It probably needs a major rewrite. |
#39 10K editions - fixed async issue to generate 10k images
Hi, The fix for this issue has been merge in the main branch. Can you please check if this is working now? |
This looks better but instead of
I suggest:
That forEach is a HoF and I think there's some confusion about how those work. |
is it possible to create 10,000 without the program crashing?
The text was updated successfully, but these errors were encountered: