-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix wal replay issue during rollup (#8774)
We have confirmation that rollups can cause issues during wal replay. This diff fixes the issue by issuing incremental rollup a new timestamp where the rollup would be written. We wait until the timestamp - 1 time to read the data, and then do the rollup at the max timestamp + 1. Performance implications: Live loader before: Number of TXs run : 21240 Number of N-Quads processed : 21239870 Time spent : 10m26.664095134s N-Quads processed per second : 33929 Live Loader after the changes: Number of TXs run : 21240 Number of N-Quads processed : 21239870 Time spent : 10m23.564645632s N-Quads processed per second : 34312 Negligible different in time taken to upload 21 million dataset.
- Loading branch information
1 parent
1643363
commit f64e8a6
Showing
10 changed files
with
168 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.