-
Notifications
You must be signed in to change notification settings - Fork 134
fix(parquet): align DataPageV2 pages to row boundaries in spaced writes #883
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
Merged
zeroshade
merged 6 commits into
apache:main
from
truffle-dev:fix-datapagev2-spaced-row-boundary
Jul 4, 2026
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
31b0bf6
fix(parquet): align DataPageV2 pages to row boundaries in spaced writes
truffle-dev d421e98
fix(parquet): grow batches past oversized rows in DataPageV2 spaced w…
truffle-dev 037b451
fix(parquet): extract row-boundary alignment into one helper
truffle-dev 7c3c787
test(parquet): unit-test alignBatchToRowBoundary edge cases
truffle-dev c60d031
fix(parquet): harden V2 doBatches and cover dict/boolean spaced paths
truffle-dev ab6fa34
docs(parquet): reword V1 OffsetIndex note and cite tracking issue #887
truffle-dev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -657,7 +657,12 @@ func (w *columnWriter) Close() (err error) { | |
| func (w *columnWriter) doBatches(total int64, repLevels []int16, action func(offset, batch int64)) { | ||
| batchSize := w.props.WriteBatchSize() | ||
| // if we're writing V1 data pages, have no replevels or the max replevel is 0 then just | ||
| // use the regular doBatches function | ||
| // use the regular doBatches function. | ||
| // | ||
| // The spec also requires row-aligned pages for V1 when an OffsetIndex is | ||
| // present (PageIndexEnabled). That gap is on the WriteBatch path and is | ||
| // out of scope for the DataPageV2 row alignment here; it is tracked in | ||
| // https://github.com/apache/arrow-go/issues/887. | ||
| if w.props.DataPageVersion() == parquet.DataPageV1 || repLevels == nil || w.descr.MaxRepetitionLevel() == 0 { | ||
| doBatches(total, batchSize, action) | ||
| return | ||
|
|
@@ -675,6 +680,17 @@ func (w *columnWriter) doBatches(total int64, repLevels []int16, action func(off | |
| panic("columnwriter: not enough repetition levels for batch to write") | ||
| } | ||
|
|
||
| // nothing to write: a non-nil but empty repLevels slice would index | ||
| // repLevels[0] below and panic (recovered as an opaque error). | ||
| if total == 0 { | ||
| return | ||
| } | ||
|
|
||
| // drive the loop over exactly the number of levels we were asked to write. | ||
| // a caller passing a repLevels slice longer than total must not spill the | ||
| // extra levels into the column. | ||
| repLevels = repLevels[:total] | ||
|
zeroshade marked this conversation as resolved.
|
||
|
|
||
| if repLevels[0] != 0 { | ||
| panic("columnwriter: batch writing for V2 data pages must start at a row boundary") | ||
| } | ||
|
|
@@ -684,16 +700,15 @@ func (w *columnWriter) doBatches(total int64, repLevels []int16, action func(off | |
| batchStart, batch int64 | ||
| ) | ||
| for batchStart = 0; batchStart+batchSize < int64(len(repLevels)); batchStart += batch { | ||
| // check one past the last value of the batch for if it's a new row | ||
| // if it's not, shrink the batch and feel back to the beginning of a | ||
| // previous row boundary to end on | ||
| batch = batchSize | ||
| for ; repLevels[batchStart+batch] != 0; batch-- { | ||
| } | ||
| // batchStart <--> batch now begins and ends on a row boundary! | ||
| batch = alignBatchToRowBoundary(repLevels, batchStart, batchSize) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Three hardening items around this loop:
|
||
| action(batchStart, batch) | ||
| } | ||
| action(batchStart, int64(len(repLevels))-batchStart) | ||
| // a grow-to-end alignment on an oversized final row can leave batchStart | ||
| // already at len(repLevels); skip the trailing zero-length action. | ||
| if batchStart < int64(len(repLevels)) { | ||
|
zeroshade marked this conversation as resolved.
|
||
| action(batchStart, int64(len(repLevels))-batchStart) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is that line covered by a test? |
||
| } | ||
| } | ||
|
|
||
| func doBatches(total, batchSize int64, action func(offset, batch int64)) { | ||
|
|
@@ -706,6 +721,30 @@ func doBatches(total, batchSize int64, action func(offset, batch int64)) { | |
| } | ||
| } | ||
|
|
||
| // alignBatchToRowBoundary adjusts batch so that repLevels[offset+batch] lands on | ||
| // a row boundary (repetition level 0) or the end of the level slice. A repeated | ||
| // row must never span a DataPageV2 page boundary, so it first shrinks toward the | ||
| // previous boundary. If there is no boundary at or before the requested split - | ||
| // the current row is wider than batch - it grows forward to the next one so the | ||
| // whole row stays in a single batch and the caller keeps making progress rather | ||
| // than looping on a zero-length batch. offset must already sit on a boundary. | ||
| func alignBatchToRowBoundary(repLevels []int16, offset, batch int64) int64 { | ||
|
zeroshade marked this conversation as resolved.
|
||
| n := int64(len(repLevels)) | ||
| if offset+batch >= n { | ||
| return batch | ||
| } | ||
| b := batch | ||
| for b > 0 && repLevels[offset+b] != 0 { | ||
| b-- | ||
| } | ||
| if b > 0 { | ||
| return b | ||
| } | ||
| for b = batch; offset+b < n && repLevels[offset+b] != 0; b++ { | ||
| } | ||
| return b | ||
| } | ||
|
|
||
| func levelSliceOrNil(rep []int16, offset, batch int64) []int16 { | ||
| if rep == nil { | ||
| return nil | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,160 @@ | ||
| // Licensed to the Apache Software Foundation (ASF) under one | ||
| // or more contributor license agreements. See the NOTICE file | ||
| // distributed with this work for additional information | ||
| // regarding copyright ownership. The ASF licenses this file | ||
| // to you under the Apache License, Version 2.0 (the | ||
| // "License"); you may not use this file except in compliance | ||
| // with the License. You may obtain a copy of the License at | ||
| // | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, software | ||
| // distributed under the License is distributed on an "AS IS" BASIS, | ||
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| // See the License for the specific language governing permissions and | ||
| // limitations under the License. | ||
|
|
||
| package file | ||
|
|
||
| import ( | ||
| "testing" | ||
|
|
||
| "github.com/stretchr/testify/assert" | ||
| ) | ||
|
|
||
| // TestAlignBatchToRowBoundary exercises the row-boundary alignment used by the | ||
| // V2 writer batching. A repetition level of 0 marks the first level of a new | ||
| // row; every other level continues the current row. The helper must return a | ||
| // batch whose end (offset+batch) sits on such a boundary or on the end of the | ||
| // slice, shrinking toward the previous boundary and only growing forward when a | ||
| // single row is wider than the requested batch. | ||
| func TestAlignBatchToRowBoundary(t *testing.T) { | ||
| tests := []struct { | ||
| name string | ||
| repLevels []int16 | ||
| offset int64 | ||
| batch int64 | ||
| want int64 | ||
| }{ | ||
| { | ||
| // offset+batch already lands on a row start, so it is returned as-is. | ||
| name: "already on boundary", | ||
| repLevels: []int16{0, 1, 0, 1, 0, 1}, | ||
| offset: 0, | ||
| batch: 2, | ||
| want: 2, | ||
| }, | ||
| { | ||
| // rows are {0}, {1,2,3}, {4}; batch 3 ends mid-row at index 3, the | ||
| // nearest earlier boundary is index 1. | ||
| name: "shrink to previous boundary", | ||
| repLevels: []int16{0, 0, 1, 1, 0}, | ||
| offset: 0, | ||
| batch: 3, | ||
| want: 1, | ||
| }, | ||
| { | ||
| // the first row {0,1,2,3} is wider than batch 2 and has no earlier | ||
| // boundary to back off to, so the whole row is kept in one batch. | ||
| name: "grow forward when row wider than batch", | ||
| repLevels: []int16{0, 1, 1, 1, 0}, | ||
| offset: 0, | ||
| batch: 2, | ||
| want: 4, | ||
| }, | ||
| { | ||
| // growing forward runs to the end of the slice when the wide row is | ||
| // the last one. | ||
| name: "grow forward to end of slice", | ||
| repLevels: []int16{0, 1, 1, 1}, | ||
| offset: 0, | ||
| batch: 2, | ||
| want: 4, | ||
| }, | ||
| { | ||
| // offset+batch == len: at the tail there is nothing past the end to | ||
| // split, so the batch is returned untouched. | ||
| name: "batch reaches end untouched", | ||
| repLevels: []int16{0, 1, 0}, | ||
| offset: 0, | ||
| batch: 3, | ||
| want: 3, | ||
| }, | ||
| { | ||
| // offset+batch > len (a batch larger than the remaining data) is | ||
| // likewise returned untouched; callers only reach this at the tail. | ||
| name: "large batch past end untouched", | ||
| repLevels: []int16{0, 1, 0}, | ||
| offset: 0, | ||
| batch: 100, | ||
| want: 100, | ||
| }, | ||
| { | ||
| // a degenerate zero batch stays zero; callers clamp it up to 1. | ||
| name: "zero batch stays zero", | ||
| repLevels: []int16{0, 1, 0}, | ||
| offset: 0, | ||
| batch: 0, | ||
| want: 0, | ||
| }, | ||
| { | ||
| // batch 1 that ends on a boundary is unchanged. | ||
| name: "one batch on boundary", | ||
| repLevels: []int16{0, 0, 0}, | ||
| offset: 0, | ||
| batch: 1, | ||
| want: 1, | ||
| }, | ||
| { | ||
| // batch 1 that ends mid-row grows to keep the row {0,1} whole. | ||
| name: "one batch grows through a row", | ||
| repLevels: []int16{0, 1, 0}, | ||
| offset: 0, | ||
| batch: 1, | ||
| want: 2, | ||
| }, | ||
| { | ||
| // a non-zero offset that already sits on a boundary: the row at | ||
| // index 2 is {2,3,4}, wider than batch 2, so it grows to 3. | ||
| name: "non-zero offset grows current row", | ||
| repLevels: []int16{0, 1, 0, 1, 1, 0}, | ||
| offset: 2, | ||
| batch: 2, | ||
| want: 3, | ||
| }, | ||
| { | ||
| // a large batch spanning several whole rows that happens to land on | ||
| // a boundary is returned as-is. | ||
| name: "large batch on boundary spanning rows", | ||
| repLevels: []int16{0, 1, 0, 1, 0, 1}, | ||
| offset: 0, | ||
| batch: 4, | ||
| want: 4, | ||
| }, | ||
| { | ||
| // a large batch that lands mid-row shrinks back across the rows it | ||
| // oversteps to the last boundary at or before the split (index 2). | ||
| name: "large batch shrinks across rows", | ||
| repLevels: []int16{0, 1, 0, 1, 1, 1, 0}, | ||
| offset: 0, | ||
| batch: 5, | ||
| want: 2, | ||
| }, | ||
| } | ||
|
|
||
| for _, tt := range tests { | ||
| t.Run(tt.name, func(t *testing.T) { | ||
| got := alignBatchToRowBoundary(tt.repLevels, tt.offset, tt.batch) | ||
| assert.Equal(t, tt.want, got) | ||
|
|
||
| // Post-conditions that must hold for every non-tail result: the | ||
| // batch ends on a row boundary or the end of the slice, and it never | ||
| // splits inside the current row (offset+batch is never a rep>0 that | ||
| // has a rep==0 immediately reachable behind it within the batch). | ||
| if tt.offset+got < int64(len(tt.repLevels)) && got > 0 { | ||
| assert.Zero(t, tt.repLevels[tt.offset+got], | ||
| "aligned batch must end on a row boundary") | ||
| } | ||
| }) | ||
| } | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.