Skip to content

Commit

Permalink
fix(meta): skip unnecessary delta persistence (#19878)
Browse files Browse the repository at this point in the history
  • Loading branch information
zwang28 authored Dec 24, 2024
1 parent 6098f65 commit 16c7fcd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/meta/src/hummock/manager/time_travel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,8 @@ impl HummockManager {
.on_conflict_do_nothing()
.exec(txn)
.await?;
// Return early to skip persisting delta.
return Ok(version_sst_ids);
}
let written = write_sstable_infos(
delta.newly_added_sst_infos().filter(|s| {
Expand Down

0 comments on commit 16c7fcd

Please sign in to comment.