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
144515: backup: update compaction to have its own manifest creation code r=msbutler a=kev-cao
Previously, the compaction logic would rely on the `createBackupManifest` from the existing backup code, which caused some issues as outlined in #144512. This patch updates compaction logic to instead have its own manifest creation code that does not rely on existing cluster state.
Fixes: #144512
Release note: None
145405: vecindex: add Level field to metadata KV key encoding r=drewkimball,michae2 a=andy-kimball
Previously, the Metadata KV Key for a vector index partition had these fields:
│Index Prefix│Prefix Columns│PartitionKey│Family ID 0│
This commit adds a Level field, which always has the value of zero:
│Index Prefix│Prefix Columns│PartitionKey│Level 0│Family ID 0│
This is needed because the KV splits do not handle cases where one KV key is a prefix of other keys. It can cause an unsplittable range to form. By adding the Level field with value zero, we guarantee that the Metadata KV key always sorts before all Vector KV keys in the partition, and yet isn't a prefix of them.
Epic: CRDB-42943
Release note: Vector indexes created in beta releases have an encoding issue that may result in failed inserts. These indexes should be dropped and re-created before being used with later releases.
145445: ci: bump timeout for lint r=celiala a=rickystewart
... from 30m to 60m. This timed out in #145433.
Epic: none
Release note: None
Co-authored-by: Kevin Cao <[email protected]>
Co-authored-by: Andrew Kimball <[email protected]>
Co-authored-by: Ricky Stewart <[email protected]>
0 commit comments