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

apucher pushed a change to branch query-runner-sampling-mode
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.


 discard 338af06  track exception counts
 discard 8093212  review fixes
 discard b635bac  add query runner support for query file resampling
     add 33be207  Change Signature of Broker API in Controller (#6119)
     add e1ab421  Fix meetup stream for quickstart (#6140)
     add 1339933  Put hadoop dependencies to pinot-orc, pinot-parquet modules 
(#6088)
     add 65be8bd  add max length support in schema builder (#6112)
     add 7602348  Adding the upsert support to real-time ingestion and query 
(#6113)
     add c6c7d68  Remove flaky test from SegmentReducerTest (#6133)
     add a910f5d  Support for multi-threaded Group By reducer for SQL. (#6044)
     add 1c6948e  add query runner support for query file resampling
     add 0931306  review fixes
     add 0546110  track exception counts

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   (338af06)
            \
             N -- N -- N   refs/heads/query-runner-sampling-mode (0546110)

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:
 .../requesthandler/BaseBrokerRequestHandler.java   |   3 +-
 .../SingleConnectionBrokerRequestHandler.java      |   5 +-
 .../apache/pinot/common/utils/CommonConstants.java |   5 +
 .../apache/pinot/common/utils/LLCSegmentName.java  |   2 +-
 .../pinot/common/utils/helix/HelixHelper.java      |  17 +-
 .../apache/pinot/common/data/FieldSpecTest.java    |  37 ++++-
 .../org/apache/pinot/common/data/SchemaTest.java   |  20 +++
 .../{SuccessResponse.java => InstanceInfo.java}    |  24 ++-
 .../api/resources/PinotBrokerRestletResource.java  | 113 ++++++++++---
 .../helix/core/PinotHelixResourceManager.java      |  11 +-
 .../org/apache/pinot/core/common/DataSource.java   |   1 -
 .../realtime/LLRealtimeSegmentDataManager.java     |  13 +-
 .../manager/realtime/RealtimeTableDataManager.java | 122 ++++++++++++--
 .../pinot/core/indexsegment/IndexSegment.java      |   6 +
 .../immutable/ImmutableSegmentImpl.java            |  31 +++-
 .../immutable/ImmutableSegmentLoader.java          |  10 +-
 .../core/indexsegment/mutable/MutableSegment.java  |   2 +
 .../indexsegment/mutable/MutableSegmentImpl.java   |  79 ++++++---
 .../org/apache/pinot/core/plan/FilterPlanNode.java |  15 +-
 .../query/pruner/SelectionQuerySegmentPruner.java  |   2 +
 .../query/reduce/AggregationDataTableReducer.java  |   2 +-
 .../core/query/reduce/BrokerReduceService.java     |  46 +++++-
 .../pinot/core/query/reduce/DataTableReducer.java  |   6 +-
 .../core/query/reduce/DataTableReducerContext.java |  57 +++++++
 .../query/reduce/DistinctDataTableReducer.java     |   2 +-
 .../core/query/reduce/GroupByDataTableReducer.java | 180 ++++++++++++++++-----
 .../query/reduce/SelectionDataTableReducer.java    |   2 +-
 .../converter/RealtimeSegmentConverter.java        |   5 +-
 .../core/realtime/impl/RealtimeSegmentConfig.java  |  32 +++-
 .../impl/ThreadSafeMutableRoaringBitmap.java       |  16 +-
 .../invertedindex/RealtimeInvertedIndexReader.java |   2 +-
 .../impl/nullvalue/MutableNullValueVector.java     |   2 +-
 .../impl/SegmentIndexCreationDriverImpl.java       |   2 +-
 ...edIndexReader.java => ValidDocIndexReader.java} |   8 +-
 ...eaderImpl.java => ValidDocIndexReaderImpl.java} |  19 +--
 .../upsert/PartitionUpsertMetadataManager.java     | 125 ++++++++++++++
 .../apache/pinot/core/upsert/RecordLocation.java   |  48 +++---
 .../core/upsert/TableUpsertMetadataManager.java    |  25 ++-
 .../org/apache/pinot/core/util/IngestionUtils.java |  15 ++
 .../realtime/LLRealtimeSegmentDataManagerTest.java |  15 +-
 .../mutable/MutableSegmentImplTestUtils.java       |  23 ++-
 ...Test.java => MutableSegmentImplUpsertTest.java} |  55 +++----
 .../processing/framework/SegmentReducerTest.java   |  11 --
 .../org/apache/pinot/queries/BaseQueriesTest.java  |  29 +++-
 .../apache/pinot/queries/DistinctQueriesTest.java  |  20 ++-
 .../src/test/resources/data/test_upsert_data.json  |  22 +++
 ...r_pinot_schema.json => test_upsert_schema.json} |  13 +-
 .../v0_deprecated/pinot-hadoop/pom.xml             |  12 ++
 .../v0_deprecated/pinot-spark/pom.xml              |   8 +
 pinot-plugins/pinot-input-format/pinot-orc/pom.xml |   2 +
 .../pinot-input-format/pinot-parquet/pom.xml       |   1 +
 .../starter/helix/HelixInstanceDataManager.java    |  12 +-
 .../apache/pinot/server/api/BaseResourceTest.java  |  22 +--
 .../pinot/spi/config/table/UpsertConfig.java       |   7 +-
 .../apache/pinot/spi/data/DimensionFieldSpec.java  |   5 +
 .../java/org/apache/pinot/spi/data/Schema.java     |  24 ++-
 .../apache/pinot/spi/data/readers/GenericRow.java  |   7 +-
 .../readers/PrimaryKeyTest.java}                   |  24 ++-
 pinot-tools/pom.xml                                |  10 --
 ...altimeQuickStart.java => UpsertQuickStart.java} |  50 ++----
 .../pinot/tools/streams/MeetupRsvpStream.java      |  18 ++-
 ...> upsert_meetupRsvp_realtime_table_config.json} |  13 +-
 ...p_schema.json => upsert_meetupRsvp_schema.json} |   3 +-
 63 files changed, 1157 insertions(+), 361 deletions(-)
 copy 
pinot-controller/src/main/java/org/apache/pinot/controller/api/resources/{SuccessResponse.java
 => InstanceInfo.java} (66%)
 create mode 100644 
pinot-core/src/main/java/org/apache/pinot/core/query/reduce/DataTableReducerContext.java
 copy 
pinot-core/src/main/java/org/apache/pinot/core/segment/index/readers/{InvertedIndexReader.java
 => ValidDocIndexReader.java} (80%)
 copy 
pinot-core/src/main/java/org/apache/pinot/core/segment/index/readers/{NullValueVectorReaderImpl.java
 => ValidDocIndexReaderImpl.java} (64%)
 create mode 100644 
pinot-core/src/main/java/org/apache/pinot/core/upsert/PartitionUpsertMetadataManager.java
 copy 
pinot-common/src/main/java/org/apache/pinot/common/lineage/LineageEntry.java => 
pinot-core/src/main/java/org/apache/pinot/core/upsert/RecordLocation.java (54%)
 copy 
pinot-broker/src/main/java/org/apache/pinot/broker/requesthandler/BrokerRequestHandler.java
 => 
pinot-core/src/main/java/org/apache/pinot/core/upsert/TableUpsertMetadataManager.java
 (62%)
 copy 
pinot-core/src/test/java/org/apache/pinot/core/indexsegment/mutable/{MutableSegmentImplNullValueVectorTest.java
 => MutableSegmentImplUpsertTest.java} (62%)
 create mode 100644 pinot-core/src/test/resources/data/test_upsert_data.json
 copy 
pinot-core/src/test/resources/data/{test_null_value_vector_pinot_schema.json => 
test_upsert_schema.json} (62%)
 copy 
pinot-spi/src/test/java/org/apache/pinot/spi/{config/table/UpsertConfigTest.java
 => data/readers/PrimaryKeyTest.java} (63%)
 copy pinot-tools/src/main/java/org/apache/pinot/tools/{RealtimeQuickStart.java 
=> UpsertQuickStart.java} (65%)
 copy 
pinot-tools/src/main/resources/examples/stream/meetupRsvp/{kafka_2.0/meetupRsvp_realtime_table_config.json
 => upsert_meetupRsvp_realtime_table_config.json} (71%)
 copy 
pinot-tools/src/main/resources/examples/stream/meetupRsvp/{meetupRsvp_schema.json
 => upsert_meetupRsvp_schema.json} (94%)


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

Reply via email to