-
Notifications
You must be signed in to change notification settings - Fork 298
Understand why Webpack is running out of Memory #683
Comments
sure thing, taking a look now. |
@dryajov any progress? Not having CI fully green is troublesome. |
@diasdavid by default, when running in node it will spawn a process directly, when running in browser it will spawn it using the server. It should work as expected right now. I don't believe we need #688. Take a look at the |
Temporary fix with #688 |
@victorbjelkholm just saw a OOM in Jenkins too: url https://ci.ipfs.team/blue/organizations/jenkins/IPFS%2Fjs-ipfs-api/detail/PR-700/4/pipeline Apparently it just happens some of the times. |
@diasdavid was this after https://github.com/ipfs/js-ipfs-api/pull/688/files was merged? In that case, our Also, anectodotal, I've been building some pretty large applications with webpack, and never hit this issue before. Are we sure we are not doing something silly when building? |
Tried building the module itself with aegir, and it works even if setting max-old-space-size to 512 so definitly something weird with the tests. |
For Browsers we use webpack. Karma will create a bundle for every file that is specified as entry point. This may take lots of resources (see ipfs-inactive/js-ipfs-http-client#683 for more information). The solution is to have only a single entry point, `test/browser.js`, which will then be responsible to create the bundle with all the tests. BREAKING CHANGE: Without bundling all tests in `test/browser.js` the tests might not run. The bundling can be done like this: // This is webpack specific. It will create a single bundle // out of all files ending in ".spec.js" within the "test" // directory and all its subdirectories. 'use strict' const testsContext = require.context('.', true, /\.spec\.js/) testsContext.keys().forEach(testsContext)
Prior to this change there was a webpack bundle for every test file which lead to very high memory usage. Now the tests are webpacked only once into a single big file. Closes #683.
I hope that this is a viable solution to the problem: ipfs/aegir#203 |
@vmx solved this <3 Thank you!! |
Currently, CI fails with:
This issue was created with the upgrade to the new ipfsd-ctl. The cause is that WebPack is trying to bundle multiple versions of the ipfs-api into the client that spawns nodes in the browser, making it run out of memory.
@dryajov wanna take the lead on fixing this given your work on ipfsd-ctl?
The text was updated successfully, but these errors were encountered: