Skip to content
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
//and then the time the lock is held can be reduced
sync();

try (Releasable ignored = writeLock.acquire()) {
try {
final TranslogReader reader = current.closeIntoReader();
Expand Down