You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[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
0 commit comments