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

xiangfu pushed a change to branch upgrade_jdk_11
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.


 discard de0e3df  move http requests in ControlerTest to use apache http client 
lib
 discard 786cdd3  upgrade jdk to 11
     add 310c44e  Enable adding new segments to a upsert-enabled realtime table 
 (#6567)
     add 40e5d11  Aggregate threadCpuTimeNs at Broker side and emit a Gauge 
(#6741)
     add 3f2151c  Fix JoinQuickStart (#6750)
     add 3f93cfb  Fix the issue that PinotFs doesn't init before the first get 
in SegmentGenerationJobRunner (#6759)
     add b9b31e5  fix license header in LongMsgOffset.java (#6783)
     add cc8ba19  upgrade jdk to 11
     add 4c68c68  move http requests in ControlerTest to use apache http client 
lib

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   (de0e3df)
            \
             N -- N -- N   refs/heads/upgrade_jdk_11 (4c68c68)

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/scripts/.pinot_quickstart.sh     |   4 +
 .../apache/pinot/broker/api/RequestStatistics.java |  12 ++
 .../requesthandler/BaseBrokerRequestHandler.java   |   6 +-
 .../metadata/segment/ColumnPartitionMetadata.java  |   4 +-
 .../apache/pinot/common/metrics/BrokerGauge.java   |   4 +-
 .../pinot/common/response/BrokerResponse.java      |  20 ++
 .../response/broker/BrokerResponseNative.java      |  29 ++-
 .../apache/pinot/common/utils/CommonConstants.java |   7 +-
 .../common/utils/FileUploadDownloadClient.java     |  24 +++
 .../apache/pinot/common/utils/SegmentUtils.java    |  68 +++++++
 .../utils/fetcher/SegmentFetcherFactory.java       |   1 +
 .../apache/pinot/controller/ControllerConf.java    |   5 +-
 .../PinotSegmentUploadDownloadRestletResource.java |  69 ++++---
 .../pinot/controller/api/upload/ZKOperator.java    |  55 +++---
 .../helix/ControllerRequestURLBuilder.java         |   4 +-
 .../helix/core/PinotHelixResourceManager.java      |  96 ++++++---
 .../segment/RealtimeSegmentAssignment.java         |  20 +-
 .../helix/core/util/ZKMetadataUtils.java           |  36 ++--
 .../src/main/resources/app/interfaces/types.d.ts   |   2 +
 .../src/main/resources/app/pages/Query.tsx         |   4 +-
 .../main/resources/app/utils/PinotMethodUtils.ts   |   7 +-
 .../api/PinotSegmentRestletResourceTest.java       |   6 +-
 .../pinot/controller/api/TableViewsTest.java       |   2 +-
 .../controller/api/upload/ZKOperatorTest.java      |  10 +-
 .../helix/ControllerInstanceToggleTest.java        |   2 +-
 .../controller/helix/ControllerSentinelTestV2.java |   6 +-
 .../controller/helix/PinotResourceManagerTest.java |  99 ++++++++--
 .../TableRebalancerClusterStatelessTest.java       |   4 +-
 .../helix/core/retention/RetentionManagerTest.java |   4 +-
 .../controller/utils/SegmentMetadataMockUtils.java |   9 +
 .../validation/ValidationManagerTest.java          |   4 +-
 .../manager/realtime/RealtimeTableDataManager.java |  26 ++-
 .../core/query/reduce/BrokerReduceService.java     |  78 +++++---
 .../upsert/PartitionUpsertMetadataManager.java     |   2 +
 .../tests/BaseClusterIntegrationTest.java          |  25 +++
 .../tests/BasicAuthRealtimeIntegrationTest.java    |   6 +-
 .../UpsertTableSegmentUploadIntegrationTest.java   | 219 +++++++++++++++++++++
 ...ll_handling.schema => upsert_table_test.schema} |   4 +-
 .../src/test/resources/upsert_test.tar.gz          | Bin 0 -> 9911 bytes
 .../standalone/SegmentGenerationJobRunner.java     |  40 ++--
 .../kafka20/KafkaPartitionLevelConsumerTest.java   |  15 +-
 .../stream/kafka20/utils/EmbeddedZooKeeper.java    |   3 +-
 .../stream/kafka20/utils/MiniKafkaCluster.java     |   5 +-
 .../org/apache/pinot/spi/stream/LongMsgOffset.java |  10 +-
 .../org/apache/pinot/tools/JoinQuickStart.java     | 192 +++++++++---------
 .../pinot/tools/perf/PerfBenchmarkDriver.java      |   5 +-
 .../pinot/tools/perf/PerfBenchmarkRunner.java      |   2 +-
 .../dimBaseballTeams_offline_table_config.json     |  18 ++
 .../dimBaseballTeams}/dimBaseballTeams_schema.json |   4 +-
 .../ingestionJobSpec.yaml                          |  11 +-
 .../rawdata/dimBaseballTeams_data.csv              |   0
 51 files changed, 957 insertions(+), 331 deletions(-)
 create mode 100644 
pinot-common/src/main/java/org/apache/pinot/common/utils/SegmentUtils.java
 create mode 100644 
pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/UpsertTableSegmentUploadIntegrationTest.java
 copy pinot-integration-tests/src/test/resources/{test_null_handling.schema => 
upsert_table_test.schema} (89%)
 create mode 100644 
pinot-integration-tests/src/test/resources/upsert_test.tar.gz
 create mode 100644 
pinot-tools/src/main/resources/examples/batch/dimBaseballTeams/dimBaseballTeams_offline_table_config.json
 copy {pinot-core/src/test/resources/data => 
pinot-tools/src/main/resources/examples/batch/dimBaseballTeams}/dimBaseballTeams_schema.json
 (82%)
 copy pinot-tools/src/main/resources/examples/batch/{baseballStats => 
dimBaseballTeams}/ingestionJobSpec.yaml (95%)
 copy pinot-core/src/test/resources/data/dimBaseballTeams.csv => 
pinot-tools/src/main/resources/examples/batch/dimBaseballTeams/rawdata/dimBaseballTeams_data.csv
 (100%)

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

Reply via email to