-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Conversation
Preliminary testing shows that CI runs on Jenkins goes from ~27 minutes to about ~15 minutes with these changes. Another great side-effect is that the CLI is generally much faster with and without args! Might no see a difference when adding large files tough. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Just needs: rebase master to fix merge conflicts, update deps and fix commit messages.
5178f9e
to
9aed099
Compare
Non-blocking discussion: I haven't really been keeping up with all bundlers, but is the use of All these changes are to the CLI which won't (shouldn't) be bundled, so no issue here. However, because we are now introducing this pattern we will need to make sure it doesn't leak into other areas. The main issue is that |
@travisperson you are absolutely correct in both the potential issue and how the current change doesn't necessarily cause it. Let's make sure to do extra diligence on PR review so that this antipattern doesn't propagate. @victorbjelkholm, this is a new error:
|
Hey, just something for the future, it would be helpful if these changes were sent as separate PRs 😜 The speed ups you've managed to achieve are super impressive and I'm all 👍 for that. That said, the inline requires thing gives me the creeps. It's just a bit unusual to see all the requires inlined like that. I would normally expect them to be at the top of the file. It's also touched a lot of files and we'll have to remember to keep inlining require calls forever or the benefit will drop off as time progresses. I think that moving this idea up the module tree a little would yield similar speed 'em ups. Instead of inlining every require, why not just load modules relevant to the command being executed? It would probably not touch quite so many files and leave them in a bit more of a familiar state for future and current contributors. We'd also not have to remember to keep inlining requires, or that it should only be done in the CLI and not the rest of the code base. What do you think? |
I would also expect the requires at the top of the file. With this approach, it is easier to understand which modules are being used in that scope, which I believe to be essential in a big project like this. Therefore, I would go for the solution proposed by @alanshaw |
There is basically just two changes here. One is fixing a daemon test and secondly is making the cli start faster, which leads to faster tests. But you're right, could have split them up. Main reason they are together is that I wanted to compare the duration of current master jobs and this branch duration, to make sure it's actually speeding it up.
Thanks :)
I agree, it's not a perfect solution but rather the only one I found. Would be happy to hear alternative solutions if it actually provides the same benefits. We don't have to inline all the require calls, just the ones in the top-level cmds.
I'm not sure how this would work? I inlined them at the top-most part I could find. If they are not inlined in the commands, where would they be inlined? "why not just load modules relevant to the command being executed" is exactly what happens here, but maybe I don't understand you correctly.
If we can find a way to make that work + lazily load modules, I would prefer that as well. But I could not find a way to make that work. I would love to see a practical example of any other solution. |
Re new error "this is a new error" Not sure what's going on here. The test passes when run in isolation, but fails when run as a part of the full suite. It passes locally (linux) for me, both isolated and part of the full suite. Looking into it. |
I'm pretty sure I found a fix. Embarrassingly, I had |
- Remove pull-streams as they didnd't actually stream stdout or stderr - Stream stdout and stderr instead of waiting for promise to resolve with output Made the tests go from taking 6 minutes to 30 seconds License: MIT Signed-off-by: Victor Bjelkholm <git@victor.earth>
Before `yarn test:node` with only `cli .config` => 24 seconds `yarn test:node` with only `cli daemon off` => 124 seconds `yarn test:node` with only `cli daemon on` => 139 seconds `yarn test:node` => 12 minutes `node src/cli/bin.js` => 0.9 seconds After `yarn test:node` with only `cli .config` => 16 seconds `yarn test:node` with only `cli daemon off` => 114 seconds `yarn test:node` with only `cli daemon on` => 79 seconds `yarn test:node` => 7 minutes `node src/cli/bin.js` => 0.3 seconds License: MIT Signed-off-by: Victor Bjelkholm <git@victor.earth>
License: MIT Signed-off-by: Victor Bjelkholm <git@victor.earth>
License: MIT Signed-off-by: Victor Bjelkholm <git@victor.earth>
Seems to finally pass all the tests, @diasdavid can you review this again? |
With #1350, shall we close this one, @victorbjelkholm ? |
@diasdavid yup! Thanks @alanshaw \o/ |
Pretty basic changes, in short:
require
s in the cli part of js-ipfs. Makes the cli (without arguments) go from 0.9 seconds to 0.3 seconds, speeding up the CLI tests from 12 minutes to 7 minutesMore to come
Depends on ipfs-inactive/interface-js-ipfs-core#263