-
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
[persist] Remove some old codec write-path code #32033
base: main
Are you sure you want to change the base?
Conversation
f327eaf
to
f031616
Compare
1cc6963
to
f633164
Compare
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.
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 { |
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.
Can we just remove the argument if it's unused?
(maybe it's used in a later commit, we'll see!)
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.
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.
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.
Since we've needed it so often in the past I'm happy with keeping it!
We'll keep the trait, since it's limited in scope and does some useful type hiding... but now that all parts are structured parts we need much less abstraction.
We know we're always generating structured data here... no need for the enum.
Motivation
Followup to https://github.com/MaterializeInc/database-issues/issues/7411
Part
- the structured-only equivalent ofColumnarRecords
.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
$T ⇔ Proto$T
mapping (possibly in a backwards-incompatible way), then it is tagged with aT-proto
label.