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

[persist] Remove some old codec write-path code #32033

Open
wants to merge 8 commits into
base: main
Choose a base branch
from

Conversation

bkirwi
Copy link
Contributor

@bkirwi bkirwi commented Mar 27, 2025

Motivation

Followup to https://github.com/MaterializeInc/database-issues/issues/7411

  • Remove a number of write-time flags that we no longer intend to use, along with the code perviously needed to support them.
  • Update the remaining tests that are expressed in terms of codec data to expect structured data.
  • Switch more of the internal logic over to work in terms of Part - the structured-only equivalent of ColumnarRecords.

Tips for reviewer

This is only partially run through - in particular, I think we can probably do away with ColumnarRecords entirely. But it seemed like quite large enough for a first review. (Though possibly not quite as large as it looks... there are a number of mechanical and test changes that inflate the diff size.)

I think most changes are separated commit-by-commit, though there's almost certainly been some bleedover. Let me know if this is too much in one go, and I should be able to split it up a bit further.

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.

@bkirwi bkirwi force-pushed the rm-codec branch 6 times, most recently from f327eaf to f031616 Compare March 31, 2025 16:06
@bkirwi bkirwi changed the title [draft] Remove some old Persist codec code now that the migration is complete [draft] Remove some old Persist codec code Mar 31, 2025
@bkirwi bkirwi force-pushed the rm-codec branch 4 times, most recently from 1cc6963 to f633164 Compare March 31, 2025 20:52
@bkirwi bkirwi marked this pull request as ready for review March 31, 2025 20:53
@bkirwi bkirwi requested review from a team as code owners March 31, 2025 20:53
@bkirwi bkirwi requested a review from ParkMyCar March 31, 2025 22:25
@bkirwi bkirwi changed the title [draft] Remove some old Persist codec code [persist] Remove some old codec write-path code Apr 1, 2025
Copy link
Member

@ParkMyCar ParkMyCar left a comment

Choose a reason for hiding this comment

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

Beautiful!!

@@ -458,20 +443,13 @@ pub(crate) const INLINE_WRITES_TOTAL_MAX_BYTES: Config<usize> = Config::new(

impl BatchBuilderConfig {
/// Initialize a batch builder config based on a snapshot of the Persist config.
pub fn new(value: &PersistConfig, shard_id: ShardId) -> Self {
pub fn new(value: &PersistConfig, _shard_id: ShardId) -> Self {
Copy link
Member

Choose a reason for hiding this comment

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

Can we just remove the argument if it's unused?

(maybe it's used in a later commit, we'll see!)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

We can, but I don't feel very strongly about it -- I think we've wanted it here ~twice now to do some shard-by-shard rollout? Anyways I'm happy to get this in the next round of changes.

Copy link
Member

Choose a reason for hiding this comment

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

Since we've needed it so often in the past I'm happy with keeping it!

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.

2 participants