You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.
When trying to give electric deploy to a project with a large amount of files it bursts a GC error. Note that this was reproduced in Clay that uses the API documentation generator (This implies even more, since the process takes a while to render in HTML and the time increases significantly).
It seems that the deploy and build tasks run in parallel and ends up bursting the memory usage limit, maybe the ideal would be to wait for the build task to finish so that can move on. We should analyze whether we are cleaning the memory properly or using Stream for reading and writing the files, since it helps to soften the use of memory allocation...
The text was updated successfully, but these errors were encountered:
When trying to give
electric deploy
to a project with a large amount of files it bursts a GC error. Note that this was reproduced in Clay that uses the API documentation generator (This implies even more, since the process takes a while to render in HTML and the time increases significantly).It seems that the
deploy
andbuild
tasks run in parallel and ends up bursting the memory usage limit, maybe the ideal would be to wait for thebuild
task to finish so that can move on. We should analyze whether we are cleaning the memory properly or using Stream for reading and writing the files, since it helps to soften the use of memory allocation...The text was updated successfully, but these errors were encountered: