You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by jl...@apache.org on 2022/04/27 17:29:57 UTC

[pinot] branch helix-1.0 updated (0f3698c4ab -> 5850c59af5)

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

jlli pushed a change to branch helix-1.0
in repository https://gitbox.apache.org/repos/asf/pinot.git


    omit 0f3698c4ab Upgrade Helix to 1.0.2
     add 75bacdfc00 Add dependencies for native netty and epoll to pinot-core (#8592)
     add 4d36f3dfbf Refactor quickstart data source (#8567)
     add 1d6ac065c1 Fix the upsert metadata bug when adding segment with same comparison value (#8590)
     add b96ca6c1fb upgrade lz4-java to 1.8.0 (#8594)
     add b0144cfba1 symlink pinot-java-client to jdk8 as well (#8591)
     add 89836a57c0 Enable minion liveness probe (#8593)
     add 6484742ada Bug fix: Complex type transformer should not be created for empty config (#8600)
     add 5850c59af5 Upgrade Helix to 1.0.2

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   (0f3698c4ab)
            \
             N -- N -- N   refs/heads/helix-1.0 (5850c59af5)

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:
 LICENSE-binary                                     |   2 +-
 kubernetes/helm/pinot/values.yaml                  |   4 +-
 .../pinot-java-client-jdk8}/pom.xml                |  15 +-
 .../pinot-java-client-jdk8/src                     |   1 +
 .../prestodb-pinot-dependencies/pom.xml            |   1 +
 pinot-core/pom.xml                                 |  14 ++
 .../recordtransformer/ComplexTypeTransformer.java  |   3 +-
 .../upsert/PartitionUpsertMetadataManager.java     |  17 +-
 .../ComplexTypeTransformerTest.java                |  52 +++--
 .../upsert/PartitionUpsertMetadataManagerTest.java |  85 +++++---
 .../pinot/spi/stream/StreamDataProducer.java       |  72 +++++++
 .../pinot/spi/stream/StreamDataProducerTest.java   |  55 +++++
 .../RealtimeComplexTypeHandlingQuickStart.java     |   4 +-
 .../pinot/tools/RealtimeJsonIndexQuickStart.java   |   4 +-
 .../apache/pinot/tools/UpsertJsonQuickStart.java   |   5 +-
 .../pinot/tools/streams/AirlineDataStream.java     | 112 ++--------
 .../tools/streams/AvroFileSourceGenerator.java     | 141 +++++++++++++
 .../pinot/tools/streams/MeetupRsvpJsonStream.java  |  53 -----
 .../pinot/tools/streams/MeetupRsvpStream.java      | 121 +++--------
 .../pinot/tools/streams/PinotRealtimeSource.java   | 190 +++++++++++++++++
 .../tools/streams/PinotSourceDataGenerator.java    |  44 ++++
 .../tools/streams/PinotStreamRateLimiter.java      |  15 +-
 .../pinot/tools/streams/RsvpSourceGenerator.java   |  98 +++++++++
 .../GithubPullRequestSourceGenerator.java          | 220 ++++++++++++++++++++
 .../PullRequestMergedEventsStream.java             | 227 ++-------------------
 .../tools/streams/PinotRealtimeSourceTest.java     |  65 ++++++
 pom.xml                                            |   2 +-
 27 files changed, 1094 insertions(+), 528 deletions(-)
 copy {pinot-clients/pinot-java-client => pinot-connectors/prestodb-pinot-dependencies/pinot-java-client-jdk8}/pom.xml (91%)
 create mode 120000 pinot-connectors/prestodb-pinot-dependencies/pinot-java-client-jdk8/src
 create mode 100644 pinot-spi/src/test/java/org/apache/pinot/spi/stream/StreamDataProducerTest.java
 create mode 100644 pinot-tools/src/main/java/org/apache/pinot/tools/streams/AvroFileSourceGenerator.java
 delete mode 100644 pinot-tools/src/main/java/org/apache/pinot/tools/streams/MeetupRsvpJsonStream.java
 create mode 100644 pinot-tools/src/main/java/org/apache/pinot/tools/streams/PinotRealtimeSource.java
 create mode 100644 pinot-tools/src/main/java/org/apache/pinot/tools/streams/PinotSourceDataGenerator.java
 copy pinot-common/src/main/java/org/apache/pinot/parsers/QueryCompiler.java => pinot-tools/src/main/java/org/apache/pinot/tools/streams/PinotStreamRateLimiter.java (73%)
 create mode 100644 pinot-tools/src/main/java/org/apache/pinot/tools/streams/RsvpSourceGenerator.java
 create mode 100644 pinot-tools/src/main/java/org/apache/pinot/tools/streams/githubevents/GithubPullRequestSourceGenerator.java
 create mode 100644 pinot-tools/src/test/java/org/apache/pinot/tools/streams/PinotRealtimeSourceTest.java


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