Skip to content

Commit

Permalink
fix(storage): fix commit_epoch new_sst_id_number (#18438)
Browse files Browse the repository at this point in the history
  • Loading branch information
Li0k authored Sep 6, 2024
1 parent 7d3f285 commit 3762877
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/meta/src/hummock/manager/commit_epoch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ impl HummockManager {
}
}

new_sst_id_number += group_table_ids.len();
new_sst_id_number += group_table_ids.len() * 2; // `split_sst` will split the SST into two parts and consumer 2 SST IDs
sst_to_cg_vec.push((commit_sst, group_table_ids));
}

Expand Down

0 comments on commit 3762877

Please sign in to comment.