Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f5bd725

Browse files
committedApr 30, 2024
[BACKPORT 2024.1][#21699] docdb: clear colocation_to_table before loading from metadata protobuf
Summary: Original commit: e404d68 / D34556 At remote bootstrap, tablet metadata was replaced with the downloaded super block. When loading the new super block to memory, colocation_to_table is not cleared. Also we set the colocation_to_table map with `emplace` method but it cannot overwrite the old data: ``` if (schema.has_colocation_id()) { colocation_to_table.emplace(schema.colocation_id(), table_info); } ``` If colocation_to_table has stale data, it can lead to corruption of SST files after a compaction because the old schema version could be used as the latest schema version and pack the unpacked rows with it, see `GetCompactionSchemaInfo` which gets the new_packing data. Jira: DB-10579 Test Plan: PgPackedRowTest.* Reviewers: sergei, rthallam Reviewed By: rthallam Subscribers: ybase Tags: #jenkins-ready Differential Revision: https://phorge.dev.yugabyte.com/D34605
1 parent da87c8f commit f5bd725

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎src/yb/tablet/tablet_metadata.cc

+1
Original file line numberDiff line numberDiff line change
@@ -432,6 +432,7 @@ Status KvStoreInfo::LoadTablesFromPB(
432432
const std::string& tablet_log_prefix,
433433
const google::protobuf::RepeatedPtrField<TableInfoPB>& pbs, const TableId& primary_table_id) {
434434
tables.clear();
435+
colocation_to_table.clear();
435436
for (const auto& table_pb : pbs) {
436437
TableInfoPtr table_info = VERIFY_RESULT(TableInfo::LoadFromPB(
437438
tablet_log_prefix, primary_table_id, table_pb));

0 commit comments

Comments
 (0)
Please sign in to comment.