This is an automated email from the ASF dual-hosted git repository.

xiangfu0 pushed a change to branch 
xiangfu0/codex/codec-stack/07-integration-docs
in repository https://gitbox.apache.org/repos/asf/pinot.git


 discard 44c9bdb1490 Add codec pipeline integration tests and design doc
 discard ed3f3e12cb9 Harden codec reload and compression stats
 discard 027ec546262 Support codecSpec on segment reload and enable codecSpec 
end to end
 discard 5edd95c09a0 Add V7 raw forward index format for codec pipelines
    omit 77e091ce569 Use caller-owned buffers for codec pipelines
     add 20e3397efb9 Enable filtered vector search on mutable HNSW and share 
the doc-id filter query (#19303)
     add e2d8babc568 Add an InstancePlanMakerImplV2 extension point for the 
combine plan node (#19461)
     add 08ca214c557 Bump protobuf.version from 4.36.0 to 4.36.1 (#19456)
     add c97a0ed955f Bump org.apache.fory:fory-json from 1.7.0 to 1.7.1 (#19457)
     add bf1e3681b19 Bump docker/setup-qemu-action from 4.2.0 to 4.3.0 (#19458)
     add 9040d4a1f1c Bump software.amazon.awssdk:bom from 2.54.7 to 2.54.9 
(#19459)
     add 6341c3b06d7 Bump org.jline:jline from 4.4.0 to 4.4.1 (#19460)
     add 6826ae6de3f Remove the write-only op chain cache from 
OpChainSchedulerService (#19443)
     add a350f67f93c Use caller-owned buffers for codec pipelines (#19397)
     add 950c03430e8 Add V7 raw forward index format for codec pipelines
     add 546b24075f0 Support codecSpec on segment reload and enable codecSpec 
end to end
     add 880aed6fce8 Harden codec reload and compression stats
     add 54a890c1ae1 Add codec pipeline integration tests and design doc

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   (44c9bdb1490)
            \
             N -- N -- N   
refs/heads/xiangfu0/codex/codec-stack/07-integration-docs (54a890c1ae1)

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:
 .github/workflows/build-pinot-docker-image.yml     |   2 +-
 .github/workflows/build-superset-docker-image.yml  |   2 +-
 .../core/operator/filter/VectorSearchStrategy.java |  48 +-
 .../org/apache/pinot/core/plan/FilterPlanNode.java |  27 +-
 .../core/plan/maker/InstancePlanMakerImplV2.java   |  15 +-
 .../operator/filter/VectorSearchStrategyTest.java  |  28 ++
 .../apache/pinot/core/plan/FilterPlanNodeTest.java | 128 ++++++
 .../tests/custom/HnswVectorRealtimeTest.java       | 236 ++++++++++
 .../tests/custom/VectorUpsertTableTest.java        |  10 +-
 .../runtime/executor/OpChainSchedulerService.java  |  72 +--
 .../realtime/impl/vector/MutableVectorIndex.java   | 309 +++++++++++--
 .../index/readers/vector/BaseFilterQuery.java      | 149 ++++++
 .../readers/vector/HnswVectorIndexReader.java      |  88 +---
 .../impl/vector/MutableVectorIndexTest.java        | 501 ++++++++++++++++++++-
 .../index/readers/vector/BaseFilterQueryTest.java  | 130 ++++++
 .../apache/pinot/spi/utils/CommonConstants.java    |   9 +
 pom.xml                                            |   8 +-
 17 files changed, 1568 insertions(+), 194 deletions(-)
 create mode 100644 
pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/custom/HnswVectorRealtimeTest.java
 create mode 100644 
pinot-segment-local/src/main/java/org/apache/pinot/segment/local/segment/index/readers/vector/BaseFilterQuery.java
 create mode 100644 
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/segment/index/readers/vector/BaseFilterQueryTest.java


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to