Faster file transfer and less CPU consumption #55
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
yajsync currently transfers files at speeds up to 800-900 mbits per second. Which is not very fast for syncing files to SSD/NVMEs or to memory disks.
During the file transfer a single core CPU usage go to 100%.
I did some profiling and identified 2 reasons of high cpu usage:
This PR tries to solve these problems by:
All these allowed to speed up transfer up to 2Gbits/sec with 50-60%of single core consumption. The main bottleneck is now found in net/fs/io in kernel space of receiver.
I also have more PRs to submit:
but these are based on refactorings made in this PR, so I am not submitting them right now to avoid unnecessary rebase to current master.