-
Notifications
You must be signed in to change notification settings - Fork 469
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[catalog] Fix upgrade checker to handle changes to Builtin Tables and Sources #32043
[catalog] Fix upgrade checker to handle changes to Builtin Tables and Sources #32043
Conversation
// If in the new version a BuiltinTable or BuiltinSource is changed (e.g. a new | ||
// column is added) then we'll potentially have a new shard, but no writes will | ||
// have occurred so no schema will be registered. | ||
let Some((_schema_id, persisted_relation_desc, _)) = persisted_schema else { | ||
anyhow::bail!("no schema found for {gid}: {shard_id}, did their environment crash?"); | ||
println!("no schema found for {gid} '{shard_id}', continuing..."); | ||
continue; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are there any repercussions of not anyhow::bail
ing if if a user's persist relation doesn't have a shard?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There shouldn't be! The only other case that this might occur is if a shard was created (e.g. a table was created) and then environmentd
immediately crashed. Although on restart environmentd
will register a schema, so we should be fine here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
TFTR! |
… Sources (#32043) This PR fixes the Catalog Upgrade Checker to handle the scenario when builtin tables and sources are either updated (e.g. a column is added) or newly created. ### Motivation Fix the catalog upgrade checker so we get better validation of upgrades ### Checklist - [ ] This PR has adequate test coverage / QA involvement has been duly considered. ([trigger-ci for additional test/nightly runs](https://trigger-ci.dev.materialize.com/)) - [ ] This PR has an associated up-to-date [design doc](https://github.com/MaterializeInc/materialize/blob/main/doc/developer/design/README.md), is a design doc ([template](https://github.com/MaterializeInc/materialize/blob/main/doc/developer/design/00000000_template.md)), or is sufficiently small to not require a design. <!-- Reference the design in the description. --> - [ ] If this PR evolves [an existing `$T ⇔ Proto$T` mapping](https://github.com/MaterializeInc/materialize/blob/main/doc/developer/command-and-response-binary-encoding.md) (possibly in a backwards-incompatible way), then it is tagged with a `T-proto` label. - [ ] If this PR will require changes to cloud orchestration or tests, there is a companion cloud PR to account for those changes that is tagged with the release-blocker label ([example](MaterializeInc/cloud#5021)). <!-- Ask in #team-cloud on Slack if you need help preparing the cloud PR. --> - [ ] If this PR includes major [user-facing behavior changes](https://github.com/MaterializeInc/materialize/blob/main/doc/developer/guide-changes.md#what-changes-require-a-release-note), I have pinged the relevant PM to schedule a changelog post.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good!
This PR fixes the Catalog Upgrade Checker to handle the scenario when builtin tables and sources are either updated (e.g. a column is added) or newly created.
Motivation
Fix the catalog upgrade checker so we get better validation of upgrades
Checklist
$T ⇔ Proto$T
mapping (possibly in a backwards-incompatible way), then it is tagged with aT-proto
label.