Skip to content
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

Improve speed by parallelizing I/O #152

Closed
ehmicky opened this issue Nov 17, 2020 · 3 comments · Fixed by #334
Closed

Improve speed by parallelizing I/O #152

ehmicky opened this issue Nov 17, 2020 · 3 comments · Fixed by #334
Labels
priority: low type: chore work needed to keep the product and development running smoothly

Comments

@ehmicky
Copy link

ehmicky commented Nov 17, 2020

Most of the logic from next-on-netlify is I/O read/write operations. Those are currently performed serially. Performing those in parallel instead would significantly improve performance.

A queue should probably be used so that the OS max limits on open files is not reached.

@lindsaylevine

@lindsaylevine lindsaylevine transferred this issue from netlify/next-on-netlify Mar 16, 2021
@lindsaylevine lindsaylevine added priority: low type: chore work needed to keep the product and development running smoothly labels Mar 19, 2021
@ehmicky
Copy link
Author

ehmicky commented May 21, 2021

@ascorbic That is awesome!
I am wondering whether we might want to increase the max concurrency from 4?

@ascorbic
Copy link
Contributor

ascorbic commented May 21, 2021

@ehmicky Almost certainly, but I need to create a large site for benchmarking before doing it. I also tried it with jest-worker to run them in a worker pool, but that was slower on the small site (presumably because of the initial setup time). However it might be quicker for big sites, so we could switch between them. I'm going to see about creating a massive test site, unless anyone has one to hand.

@ehmicky
Copy link
Author

ehmicky commented May 21, 2021

Thanks for experimenting and tweaking this @ascorbic, this should provide with some huge performance benefits!

One thing to look for is the OS limit on the maximum number of open files. However, I think any value below 100 should be fairly safe in that respect.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
priority: low type: chore work needed to keep the product and development running smoothly
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants