Skip to content
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

Conversation

ParkMyCar
Copy link
Member

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)
  • This PR has an associated up-to-date design doc, is a design doc (template), or is sufficiently small to not require a design.
  • If this PR evolves an existing $T ⇔ Proto$T mapping (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).
  • If this PR includes major user-facing behavior changes, I have pinged the relevant PM to schedule a changelog post.

@ParkMyCar ParkMyCar requested a review from bosconi March 28, 2025 17:12
@ParkMyCar ParkMyCar requested a review from a team as a code owner March 28, 2025 17:12
Comment on lines +708 to +713
// 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;
Copy link
Contributor

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::bailing if if a user's persist relation doesn't have a shard?

Copy link
Member Author

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.

Copy link
Contributor

@SangJunBak SangJunBak left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@ParkMyCar ParkMyCar merged commit 19a92ed into MaterializeInc:main Mar 28, 2025
21 checks passed
@ParkMyCar
Copy link
Member Author

TFTR!

ParkMyCar added a commit that referenced this pull request Mar 28, 2025
… 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.
Copy link
Member

@bosconi bosconi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants