incubator-uniffle
incubator-uniffle copied to clipboard
[FEATURE] support use skip list to store shuffleBuffer in memory
Code of Conduct
- [X] I agree to follow this project's Code of Conduct
Search before asking
- [X] I have searched in the issues and found no similar issues.
Describe the feature
Currently, we use linkedList to store shuffleBuffer in memory. If we assign a lot of memory(1TB) to the shuffle server, the performance will not be good while getting data from memory. Because every request needs to look for lastBlockId from the head position.
Other benefits of using skip list:
- Fix #926
- We don't need to sort data while flushing data to disk. #137
Motivation
No response
Describe the solution
No response
Additional context
No response
Are you willing to submit PR?
- [X] Yes I am willing to submit a PR!
We need to guarantee the order of data, otherwise we will lose the data.
We need to guarantee the order of data, otherwise we will lose the data.
Get it. This feature will not support slow start. I'm going to make it an optional feature.