This is an automated email from the ASF dual-hosted git repository.
xiangfu0 pushed a change to branch xiangfu0/codex/codec-stack/05-v7-format
in repository https://gitbox.apache.org/repos/asf/pinot.git
omit feb515f1dc7 Validate V7 frames lazily and harden the review follow-ups
omit 950c03430e8 Add V7 raw forward index format for codec pipelines
add b916e5474c9 Extract task-type table filter into overridable
PinotTaskManager method (#19463)
add f46b0a9fa08 Resolve absent MAP/OPEN_STRUCT keys to a shared
default-column-style NullDataSource (#19439)
add e6787e17864 Enforce one null pre-filter contract across all
filter-aware vector readers (#19464)
add 27a0d4e5fa0 Add V7 raw forward index format for codec pipelines
add 9f52fa61871 Validate V7 frames lazily and harden the review follow-ups
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (feb515f1dc7)
\
N -- N -- N refs/heads/xiangfu0/codex/codec-stack/05-v7-format
(9f52fa61871)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.../api/resources/PinotTableRestletResource.java | 10 +-
.../helix/core/minion/PinotTaskManager.java | 13 ++
.../core/operator/blocks/ProjectionBlock.java | 11 +-
.../core/operator/filter/MapFilterOperator.java | 106 ++-------
.../transform/function/ItemTransformFunction.java | 38 +--
.../pinot/core/plan/AggregationPlanNode.java | 5 +-
.../filter/MapFilterOperatorOpenStructTest.java | 80 ++++---
.../ItemTransformFunctionNullBitmapTest.java | 74 +++---
.../impl/openstruct/OpenStructColumnSplitter.java | 4 +
.../segment/index/datasource/NullDataSource.java | 57 +++++
.../local/segment/index/map/BaseMapDataSource.java | 38 ++-
.../local/segment/index/map/NullDataSource.java | 255 ---------------------
.../openstruct/ImmutableOpenStructDataSource.java | 32 +--
.../openstruct/MutableOpenStructDataSource.java | 16 +-
.../index/openstruct/MutableOpenStructIndex.java | 10 +-
.../index/openstruct/OpenStructNullDataSource.java | 195 ----------------
.../index/openstruct/SparseKeyDataSource.java | 7 +-
.../readers/vector/HnswVectorIndexReader.java | 11 +-
.../readers/vector/IvfFlatVectorIndexReader.java | 1 +
.../readers/vector/IvfOnDiskVectorIndexReader.java | 4 +-
.../readers/vector/IvfPqVectorIndexReader.java | 1 +
.../BaseConstantValueVirtualColumnProvider.java | 2 +
.../impl/vector/MutableVectorIndexTest.java | 14 ++
.../DefaultNullValueVirtualColumnProviderTest.java | 148 +++++++++---
.../index/creator/HnswVectorIndexCreatorTest.java | 33 +++
.../index/datasource/NullDataSourceTest.java | 135 +++++++++++
.../segment/index/map/BaseMapDataSourceTest.java | 71 ++++++
.../ImmutableOpenStructDataSourceTest.java | 34 ++-
.../MutableOpenStructDataSourceTest.java | 32 ++-
.../openstruct/OpenStructNullDataSourceTest.java | 133 -----------
.../readers/vector/IvfFlatFilterAwareTest.java | 23 ++
.../readers/vector/IvfOnDiskFilterAwareTest.java | 23 ++
.../segment/index/vector/IvfPqVectorIndexTest.java | 70 ++++++
.../segment/spi/datasource/MapDataSource.java | 3 +-
.../spi/datasource/OpenStructDataSource.java | 52 ++---
.../index/reader/FilterAwareVectorIndexReader.java | 5 +-
36 files changed, 809 insertions(+), 937 deletions(-)
create mode 100644
pinot-segment-local/src/main/java/org/apache/pinot/segment/local/segment/index/datasource/NullDataSource.java
delete mode 100644
pinot-segment-local/src/main/java/org/apache/pinot/segment/local/segment/index/map/NullDataSource.java
delete mode 100644
pinot-segment-local/src/main/java/org/apache/pinot/segment/local/segment/index/openstruct/OpenStructNullDataSource.java
create mode 100644
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/segment/index/datasource/NullDataSourceTest.java
create mode 100644
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/segment/index/map/BaseMapDataSourceTest.java
delete mode 100644
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/segment/index/openstruct/OpenStructNullDataSourceTest.java
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]