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


 discard 40ed79e1e1 Upgrade Helix to 1.0.4
     add 9720d5577b Append /query/url to brokerUrl (#9054)
     add 63be561513 bump jackson to 2.12.7 (#9038)
     add aeaa26e225 bump netty to 4.1.74.Final (#9046)
     add 572e9628ad BUGFIX: Adding util for getting URL from InstanceConfig 
(#8856)
     add 99e7948045 Optimize like to regexp conversion to do not include 
unnecessary ^.* and .*$ (#8893)
     add a2cde564f6 List tables by taskType (#9049)
     add 84478b6451 Fix string length in MutableColumnStatistics (#9059)
     add 83410f69b4 Remove segments using valid doc ids instead of primary key 
(#8674)
     add a13dc032e5 Add k8s resource request by default (#9012)
     add 9176db4c71 [multistage] add more query types for testing (#9068)
     add c006f59111 Add a new workflow to check vulnerabilities using trivy 
(#9044)
     add c45edbf64c Upgrade Helix to 1.0.4

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   (40ed79e1e1)
            \
             N -- N -- N   refs/heads/helix-1.0 (c45edbf64c)

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/pinot_vuln_check.yml             |  66 +++++++++++
 ...ld_and_push.sh => .pinot_docker_image_build.sh} |   4 +-
 .../alertFilter.properties => .trivyignore         |   0
 kubernetes/helm/pinot/values.yaml                  |  39 +++---
 pinot-broker/pom.xml                               |   8 ++
 pinot-clients/pinot-java-client/pom.xml            |   4 -
 pinot-clients/pinot-jdbc-client/pom.xml            |   4 -
 pinot-common/pom.xml                               |   4 -
 .../pinot/common/helix/ExtraInstanceConfig.java    |  29 +++++
 .../common/utils/RegexpPatternConverterUtils.java  |  69 ++++++++++-
 .../utils/RegexpPatternConverterUtilsTest.java     |  32 ++++-
 pinot-connectors/pinot-spark-connector/pom.xml     |   2 +-
 .../pinot-common-jdk8/pom.xml                      |   4 -
 .../pinot-core-jdk8/pom.xml                        |   4 -
 .../pinot-java-client-jdk8/pom.xml                 |   4 -
 .../presto-pinot-driver/pom.xml                    |   5 -
 pinot-controller/pom.xml                           |   8 +-
 .../api/resources/PinotTableRestletResource.java   |  57 +++++----
 .../tuner/NoOpTableTableConfigTuner.java           |   6 +
 .../controller/tuner/RealTimeAutoIndexTuner.java   |   6 +
 .../pinot/controller/tuner/TableConfigTuner.java   |  12 ++
 .../api/PinotTableRestletResourceTest.java         | 112 +++++++++++++++++
 pinot-core/pom.xml                                 |   4 -
 .../manager/realtime/RealtimeTableDataManager.java |  17 +--
 .../core/query/executor/sql/SqlQueryExecutor.java  |  23 ++--
 ...adataAndDictionaryAggregationPlanMakerTest.java |   3 +-
 .../plan/maker/QueryOverrideWithHintsTest.java     |   5 +
 pinot-distribution/pinot-source-assembly.xml       |   1 +
 .../integration/tests/TlsIntegrationTest.java      |  11 ++
 pinot-minion/pom.xml                               |   4 -
 .../pinot-batch-ingestion-spark-2.4/pom.xml        |   4 +
 .../pinot-batch-ingestion-spark-3.2/pom.xml        |   2 +-
 .../v0_deprecated/pinot-spark/pom.xml              |  12 +-
 .../pinot-input-format/pinot-parquet/pom.xml       |   4 +
 .../pinot-stream-ingestion/pinot-kafka-2.0/pom.xml |  15 +++
 .../pinot/query/QueryEnvironmentTestBase.java      |   4 +
 .../pinot/query/runtime/QueryRunnerTest.java       |  12 +-
 .../indexsegment/immutable/EmptyIndexSegment.java  |   6 +
 .../immutable/ImmutableSegmentImpl.java            |  14 +++
 .../indexsegment/mutable/IntermediateSegment.java  |  14 +++
 .../indexsegment/mutable/MutableSegmentImpl.java   |  13 ++
 .../converter/stats/MutableColumnStatistics.java   |  85 +++++++------
 .../segment/readers/PinotSegmentRecordReader.java  |  15 +++
 .../upsert/PartitionUpsertMetadataManager.java     |  38 ++++--
 .../local/upsert/TableUpsertMetadataManager.java   |   8 +-
 .../MutableSegmentImplUpsertComparisonColTest.java |   2 +-
 .../mutable/MutableSegmentImplUpsertTest.java      |   8 +-
 .../stats/MutableColumnStatisticsTest.java         |  63 ++++++++++
 .../upsert/PartitionUpsertMetadataManagerTest.java | 132 ++++++++++++++-------
 .../org/apache/pinot/segment/spi/IndexSegment.java |  10 ++
 pinot-server/pom.xml                               |  12 +-
 .../pinot/tools/perf/PerfBenchmarkDriver.java      |   5 +-
 pom.xml                                            |  25 ++--
 53 files changed, 836 insertions(+), 214 deletions(-)
 create mode 100644 .github/workflows/pinot_vuln_check.yml
 copy .github/workflows/scripts/docker/{.pinot_docker_image_build_and_push.sh 
=> .pinot_docker_image_build.sh} (95%)
 copy 
docker/images/pinot-thirdeye/config/ephemeral/detector-config/anomaly-functions/alertFilter.properties
 => .trivyignore (100%)
 create mode 100644 
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/realtime/converter/stats/MutableColumnStatisticsTest.java


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

Reply via email to