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

Do sync before closeIntoReader when rolling generation to improve index performance #45765

Merged
merged 4 commits into from
Aug 22, 2019
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1641,6 +1641,10 @@ public TranslogGeneration getMinGenerationForSeqNo(final long seqNo) {
* @throws IOException if an I/O exception occurred during any file operations
*/
public void rollGeneration() throws IOException {
//make sure we move most of the data to disk outside of the writeLock
dengweisysu marked this conversation as resolved.
Show resolved Hide resolved
//and then the time the lock is held can be reduced
sync();

dengweisysu marked this conversation as resolved.
Show resolved Hide resolved
try (Releasable ignored = writeLock.acquire()) {
try {
final TranslogReader reader = current.closeIntoReader();
Expand Down