You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by ki...@apache.org on 2019/01/25 03:55:05 UTC

[incubator-pinot] branch nested-object-indexing updated (eacb83c -> 4c39301)

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

kishoreg pushed a change to branch nested-object-indexing
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.


 discard eacb83c  Adding support to index nested fields within a column for e.g. map, json, Text etc. WIP
 discard 8f0ed61  Adding support for Object Type
     new ffd9256  Adding support for Object Type
     new 4c39301  Wiring up end to end to support indexing nested fields on complex objects

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   (eacb83c)
            \
             N -- N -- N   refs/heads/nested-object-indexing (4c39301)

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.

The 5644 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../org/apache/pinot/common/data/FieldSpec.java    |   3 +
 .../org/apache/pinot/common/data/PinotObject.java  |  25 ++-
 .../pinot/common/data/objects/TextObject.java      |   3 +-
 pinot-core/pom.xml                                 |  19 ++-
 .../immutable/ImmutableSegmentLoader.java          |   2 +-
 .../filter/IndexBasedMatchesFilterOperator.java    |  58 ++++++-
 .../MatchesPredicateEvaluatorFactory.java          |  21 +--
 .../creator/impl/inv/LuceneIndexCreator.java       |  89 +++++++++--
 .../index/column/PhysicalColumnIndexContainer.java |  16 +-
 .../index/data/source/ColumnDataSource.java        |   2 +-
 .../loader/invertedindex/InvertedIndexHandler.java |  18 ++-
 .../index/readers/LuceneInvertedIndexReader.java   | 131 ++++++++++++++--
 .../tests/LuceneIndexClusterIntegrationTest.java   | 172 +++++++++++++++++++++
 pinot-perf/pom.xml                                 |  32 +++-
 .../org/apache/pinot/perf/LuceneBenchmark.java     |  80 ++++++++++
 .../apache/pinot/tools/perf/ZookeeperLauncher.java |   2 +-
 16 files changed, 597 insertions(+), 76 deletions(-)
 create mode 100644 pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/LuceneIndexClusterIntegrationTest.java
 create mode 100644 pinot-perf/src/main/java/org/apache/pinot/perf/LuceneBenchmark.java


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org