You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 12, 2020. It is now read-only.
While we perform the key file merge sort, we do random reads of records to be written from the record files being merged. It seems like there is a lot of potential to optimize this process. We could merge sort a fixed number of keys (e.g. 1024) and then only read once from each record file and get all the necessary records in memory before writing them to the compacted partition.
The text was updated successfully, but these errors were encountered:
It is important to note that there is no guarantee that the record file will be sorted. However, it will usually be the case and we should take advantage of that.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
While we perform the key file merge sort, we do random reads of records to be written from the record files being merged. It seems like there is a lot of potential to optimize this process. We could merge sort a fixed number of keys (e.g. 1024) and then only read once from each record file and get all the necessary records in memory before writing them to the compacted partition.
The text was updated successfully, but these errors were encountered: