This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/hk2.version-3.1.0 in repository https://gitbox.apache.org/repos/asf/pinot.git
discard 23bd28f3e4 Bump hk2.version from 2.6.1 to 3.1.0 add 0c61bb67af Bugfix. Avoid passing null table name input to translation util (#12726) add eceffb9bca Bump aws.sdk.version from 2.25.3 to 2.25.17 (#12725) add 5201d2f8ee upgrade redis version in superset pinot docker image (#12729) add 2b47523faf Consistency in API response for live broker (#12201) add 3697552290 Remove commons-logging exclusion (#12730) add af614ede58 Bump io.grpc:grpc-protobuf-lite from 1.19.0 to 1.62.2 (#12733) add da24616750 Bump com.google.cloud:libraries-bom from 26.32.0 to 26.34.0 (#12740) add 03e945bf20 Bump org.apache.maven.plugins:maven-assembly-plugin from 3.6.0 to 3.7.1 (#12741) add bb2eb49475 Replace custom fmpp plugin with fmpp-maven-plugin (#12737) add 470f8ba2e0 Add GZIP Compression Codec (#11434) (#12668) add 174377df2a jsonExtractIndex support array of default values (#12748) add 28aec2e01c Add some additional metrics for Minion tasks (#12710) add 3185e303f4 Improved null check for varargs (#12673) add c15c3912cb Percentile operations supporting null (#12271) add 62b97ef3b4 Add support for phrase search with wildcard and prefix matching for Lucene indexed tables (#12680) add e71c3dc023 upgrade to slf4j 2.0.12 (#12761) add 4f0bc11b95 Cleanup Javax and Jakarta dependencies (#12760) add ee40f9aec5 Bump hk2.version from 2.6.1 to 3.1.0 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 (23bd28f3e4) \ N -- N -- N refs/heads/dependabot/maven/hk2.version-3.1.0 (ee40f9aec5) 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: contrib/pinot-fmpp-maven-plugin/pom.xml | 127 -------- .../main/java/org/apache/pinot/fmpp/FMPPMojo.java | 270 ---------------- .../org/apache/pinot/fmpp/MavenDataLoader.java | 55 ---- docker/images/pinot-superset/requirements-db.txt | 2 +- pinot-broker/pom.xml | 35 --- .../java/org/apache/pinot/client/BrokerCache.java | 6 +- pinot-common/pom.xml | 100 +++--- pinot-common/src/main/codegen/config.fmpp | 2 + .../common/function/scalar/ArrayFunctions.java | 2 +- .../apache/pinot/common/metrics/MinionMeter.java | 8 +- pinot-compatibility-verifier/pom.xml | 6 - pinot-connectors/pinot-flink-connector/pom.xml | 8 - pinot-connectors/pinot-spark-3-connector/pom.xml | 15 - pinot-controller/pom.xml | 45 +-- .../api/resources/PinotTableInstances.java | 7 +- .../api/resources/PinotTaskRestletResource.java | 10 +- .../helix/core/PinotHelixResourceManager.java | 41 ++- .../PinotHelixResourceManagerStatelessTest.java | 24 ++ pinot-core/pom.xml | 79 +---- .../apache/pinot/core/minion/SegmentPurger.java | 8 +- .../JsonExtractIndexTransformFunction.java | 77 ++++- .../function/AggregationFunctionFactory.java | 37 ++- .../NullableSingleInputAggregationFunction.java | 9 + .../function/PercentileAggregationFunction.java | 57 ++-- .../function/PercentileEstAggregationFunction.java | 108 ++++--- .../PercentileEstMVAggregationFunction.java | 4 +- .../function/PercentileKLLAggregationFunction.java | 69 ++-- .../PercentileKLLMVAggregationFunction.java | 2 +- .../function/PercentileMVAggregationFunction.java | 4 +- .../PercentileRawEstAggregationFunction.java | 10 +- .../PercentileRawKLLAggregationFunction.java | 4 +- .../PercentileRawTDigestAggregationFunction.java | 17 +- .../PercentileSmartTDigestAggregationFunction.java | 96 +++--- .../PercentileTDigestAggregationFunction.java | 110 ++++--- .../PercentileTDigestMVAggregationFunction.java | 6 +- .../JsonExtractIndexTransformFunctionTest.java | 90 +++++- .../AbstractPercentileAggregationFunctionTest.java | 333 ++++++++++++++++++++ .../PercentileAggregationFunctionTest.java | 11 +- .../PercentileEstAggregationFunctionTest.java} | 34 +- .../PercentileKLLAggregationFunctionTest.java} | 28 +- ...centileSmartTDigestAggregationFunctionTest.java | 87 ++++++ .../org/apache/pinot/queries/FluentQueryTest.java | 2 +- .../NoDictionaryCompressionQueriesTest.java | 73 ++++- .../pinot/queries/TextSearchQueriesTest.java | 40 +++ pinot-distribution/pom.xml | 12 - pinot-integration-test-base/pom.xml | 8 - pinot-integration-tests/pom.xml | 16 - pinot-minion/pom.xml | 4 - .../BenchmarkNoDictionaryIntegerCompression.java | 44 ++- .../perf/BenchmarkNoDictionaryLongCompression.java | 41 ++- .../BenchmarkNoDictionaryStringCompression.java | 186 ++++++----- .../pinot-batch-ingestion-spark-2.4/pom.xml | 16 +- .../pinot-batch-ingestion-spark-3/pom.xml | 16 +- pinot-plugins/pinot-file-system/pinot-s3/pom.xml | 6 - .../BaseMultipleSegmentsConversionExecutor.java | 13 +- .../tasks/BaseSingleSegmentConversionExecutor.java | 22 +- .../plugin/minion/tasks/BaseTaskExecutor.java | 33 ++ .../pinot-stream-ingestion/pinot-kafka-2.0/pom.xml | 4 - .../pinot-stream-ingestion/pinot-pulsar/pom.xml | 55 +--- .../SerializedFrequentLongsSketch.java | 3 +- .../SerializedFrequentStringsSketch.java | 3 +- .../io/compression/ChunkCompressorFactory.java | 9 +- ...thLengthCompressor.java => GzipCompressor.java} | 31 +- ...oughDecompressor.java => GzipDecompressor.java} | 35 ++- .../writer/impl/BaseChunkForwardIndexWriter.java | 2 +- .../impl/VarByteChunkForwardIndexWriterV4.java | 1 + .../invertedindex/RealtimeLuceneTextIndex.java | 12 +- .../forward/BaseChunkForwardIndexReader.java | 10 +- .../forward/VarByteChunkForwardIndexReaderV4.java | 1 + .../index/readers/text/LuceneTextIndexReader.java | 14 +- .../segment/index/text/TextIndexConfigBuilder.java | 2 + .../segment/local/utils/LuceneTextIndexUtils.java | 75 +++++ .../local/io/compression/TestCompression.java | 127 ++++++-- .../invertedindex/LuceneMutableTextIndexTest.java | 2 +- .../NativeAndLuceneMutableTextIndexTest.java | 2 +- .../forward/VarByteChunkSVForwardIndexTest.java | 13 + .../index/loader/ForwardIndexHandlerTest.java | 261 ++++++++-------- .../segment/store/FilePerIndexDirectoryTest.java | 4 +- .../store/SingleFileIndexDirectoryTest.java | 4 +- .../local/utils/LuceneTextIndexUtilsTest.java | 100 ++++++ .../spi/compression/ChunkCompressionType.java | 2 +- .../segment/spi/compression/ChunkCompressor.java | 8 +- .../segment/spi/compression/ChunkDecompressor.java | 8 +- .../pinot/segment/spi/index/FieldIndexConfigs.java | 6 +- .../segment/spi/index/ForwardIndexConfig.java | 4 + .../pinot/segment/spi/index/TextIndexConfig.java | 31 +- pinot-server/pom.xml | 63 ---- pinot-spi/pom.xml | 26 ++ .../apache/pinot/spi/config/table/FieldConfig.java | 15 +- pinot-tools/pom.xml | 12 - pom.xml | 347 ++++++++++++--------- 91 files changed, 2248 insertions(+), 1619 deletions(-) delete mode 100644 contrib/pinot-fmpp-maven-plugin/pom.xml delete mode 100644 contrib/pinot-fmpp-maven-plugin/src/main/java/org/apache/pinot/fmpp/FMPPMojo.java delete mode 100644 contrib/pinot-fmpp-maven-plugin/src/main/java/org/apache/pinot/fmpp/MavenDataLoader.java create mode 100644 pinot-core/src/test/java/org/apache/pinot/core/query/aggregation/function/AbstractPercentileAggregationFunctionTest.java copy pinot-spi/src/main/java/org/apache/pinot/spi/env/SystemEnvironment.java => pinot-core/src/test/java/org/apache/pinot/core/query/aggregation/function/PercentileAggregationFunctionTest.java (75%) copy pinot-core/src/test/java/org/apache/pinot/core/{operator/transform/function/ArrayAverageTransformFunctionTest.java => query/aggregation/function/PercentileEstAggregationFunctionTest.java} (56%) copy pinot-core/src/{main/java/org/apache/pinot/core/query/aggregation/function/BooleanAndAggregationFunction.java => test/java/org/apache/pinot/core/query/aggregation/function/PercentileKLLAggregationFunctionTest.java} (61%) create mode 100644 pinot-core/src/test/java/org/apache/pinot/core/query/aggregation/function/PercentileSmartTDigestAggregationFunctionTest.java copy pinot-segment-local/src/main/java/org/apache/pinot/segment/local/io/compression/{LZ4WithLengthCompressor.java => GzipCompressor.java} (65%) copy pinot-segment-local/src/main/java/org/apache/pinot/segment/local/io/compression/{PassThroughDecompressor.java => GzipDecompressor.java} (63%) create mode 100644 pinot-segment-local/src/main/java/org/apache/pinot/segment/local/utils/LuceneTextIndexUtils.java create mode 100644 pinot-segment-local/src/test/java/org/apache/pinot/segment/local/utils/LuceneTextIndexUtilsTest.java --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org