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 7e4414e199 Upgrade Helix to 1.0.3
add 6da48a842d fix a flaky test case by avoiding a race condition when
reloading table and getting table size (#8739)
add 39b9eabb56 bump RoaringBitmap and use andCardinality/orCardinality
(#8765)
add 5bf902eff9 Skip creating null value vector when there is no null value
(#8756)
add a307a23a0d Refactor PinotMetricUtils and
MetricsRegistryRegistrationListener related classes from pinot-common to
pinot-spi (#8763)
add d4c99abe72 Add histogram aggregation function `feature` (#8724)
add 963d4483db Fix typo in add table command (#8772)
add 9beb63049f Remove abuse of new ObjectMapper. (#8736)
add 36298f0aa4 [Clean up] Simplify IngestionConfig construction (#8743)
add fc564e90f5 Avoid query execution error when common aggregation
functions are used w/ BIG_DECIMAL data type (#8769)
add 73316a6cf7 Address comments for DoubleVectorOpUtils (#8777)
add 9533c17134 Upgrade Helix to 1.0.3
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 (7e4414e199)
\
N -- N -- N refs/heads/helix-1.0 (9533c17134)
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 | 4 +-
.../broker/broker/helix/BaseBrokerStarter.java | 2 +-
.../ConnectionFailureDetectorTest.java | 2 +-
.../LiteralOnlyBrokerRequestTest.java | 33 +-
.../java/org/apache/pinot/client/BrokerCache.java | 5 +-
.../apache/pinot/client/ExternalViewReader.java | 4 +-
.../client/JsonAsyncHttpPinotClientTransport.java | 4 +-
.../pinot/client/AggregationResultSetTest.java | 5 +-
.../apache/pinot/client/ExecutionStatsTest.java | 5 +-
.../apache/pinot/client/GroupByResultSetTest.java | 5 +-
.../apache/pinot/client/ResultSetGroupTest.java | 4 +-
.../pinot/client/ResultTableResultSetTest.java | 5 +-
.../pinot/client/SelectionResultSetTest.java | 5 +-
.../pinot/client/PinotConnectionMetaData.java | 10 +-
.../org/apache/pinot/client/PinotResultSet.java | 4 +-
.../response/ControllerTenantBrokerResponse.java | 7 +-
.../client/controller/response/SchemaResponse.java | 7 +-
.../client/controller/response/TableResponse.java | 7 +-
.../client/DummyPinotControllerTransport.java | 5 +-
.../apache/pinot/client/PinotResultSetTest.java | 4 +-
.../pinot/common/metrics/AbstractMetrics.java | 1 +
.../pinot/common/metrics/ValidationMetrics.java | 1 +
.../segment/generation/SegmentGenerationUtils.java | 9 +-
.../org/apache/pinot/common/utils/DataSchema.java | 3 +
.../apache/pinot/common/utils/PinotAppConfigs.java | 5 +-
.../common/utils/config/TableConfigUtils.java | 25 +-
.../pinot/common/function/JsonFunctionsTest.java | 10 +-
.../pinot/common/metrics/PinotMetricUtilsTest.java | 2 +
.../common/utils/config/TableConfigSerDeTest.java | 35 +-
.../pinot/common/utils/config/TableConfigTest.java | 6 +-
.../connector/flink/http/PinotConnectionUtils.java | 46 +-
.../flink/sink/PinotSinkIntegrationTest.java | 6 +-
.../spark/connector/PinotServerDataFetcher.scala | 3 +-
.../presto/PinotScatterGatherQueryClient.java | 2 +-
.../pinot/controller/BaseControllerStarter.java | 2 +-
.../api/resources/PinotTableRestletResource.java | 2 +-
.../api/resources/TableDebugResource.java | 3 +-
.../controller/recommender/RecommenderDriver.java | 1 +
.../controller/recommender/io/InputManager.java | 9 +-
.../pinot/controller/util/FileIngestionHelper.java | 8 +-
.../controller/LeadControllerManagerTest.java | 2 +-
.../api/PinotControllerAppConfigsTest.java | 7 +-
.../api/PinotTableRestletResourceTest.java | 24 +-
.../pinot/controller/api/TableSizeReaderTest.java | 2 +-
.../controller/helix/SegmentStatusCheckerTest.java | 2 +-
.../helix/core/PinotHelixResourceManagerTest.java | 6 +-
.../periodictask/ControllerPeriodicTaskTest.java | 2 +-
.../helix/core/realtime/SegmentCompletionTest.java | 2 +-
.../helix/core/retention/RetentionManagerTest.java | 2 +-
.../core/retention/SegmentLineageCleanupTest.java | 6 +-
.../controller/recommender/TestConfigEngine.java | 7 +-
.../validation/StorageQuotaCheckerTest.java | 2 +-
.../evaluators/DefaultJsonPathEvaluator.java | 1 +
.../core/operator/filter/AndFilterOperator.java | 2 +-
.../core/operator/filter/OrFilterOperator.java | 2 +-
.../JsonExtractScalarTransformFunction.java | 1 +
.../function/AggregationFunctionFactory.java | 5 +-
.../function/HistogramAggregationFunction.java | 361 +++++++++++++++
.../function/MaxAggregationFunction.java | 11 +
.../function/MinAggregationFunction.java | 11 +
.../function/SumAggregationFunction.java | 11 +
.../aggregation/utils/DoubleVectorOpUtils.java | 73 +++
.../BaseTableDataManagerAcquireSegmentTest.java | 2 +-
.../data/manager/BaseTableDataManagerTest.java | 2 +-
.../offline/DimensionTableDataManagerTest.java | 2 +-
.../realtime/LLRealtimeSegmentDataManagerTest.java | 2 +-
.../executor/QueryExecutorExceptionsTest.java | 2 +-
.../core/query/executor/QueryExecutorTest.java | 2 +-
.../scheduler/MultiLevelPriorityQueueTest.java | 2 +-
.../query/scheduler/PrioritySchedulerTest.java | 2 +-
.../scheduler/fcfs/FCFSSchedulerGroupTest.java | 2 +-
.../framework/SegmentProcessorFrameworkTest.java | 42 +-
.../apache/pinot/core/util/SchemaUtilsTest.java | 11 +-
.../pinot/queries/ExplainPlanQueriesTest.java | 2 +-
.../apache/pinot/queries/HistogramQueriesTest.java | 493 +++++++++++++++++++++
.../queries/SegmentWithNullValueVectorTest.java | 2 +-
.../IngestionConfigHybridIntegrationTest.java | 26 +-
.../tests/JsonPathClusterIntegrationTest.java | 10 +-
.../tests/MapTypeClusterIntegrationTest.java | 10 +-
.../tests/OfflineClusterIntegrationTest.java | 41 +-
.../tests/SegmentCompletionIntegrationTest.java | 2 +-
.../SegmentWriterUploaderIntegrationTest.java | 8 +-
.../org/apache/pinot/minion/BaseMinionStarter.java | 2 +-
.../batch/common/SegmentGenerationTaskRunner.java | 3 +-
.../preprocess/DataPreprocessingHelperTest.java | 4 +-
.../ingestion/common/DefaultControllerRestApi.java | 4 +-
.../plugin/provider/AzureEnvironmentProvider.java | 5 +-
.../inputformat/avro/AvroRecordExtractorTest.java | 7 +-
.../inputformat/json/JSONMessageDecoder.java | 6 +-
.../mergerollup/MergeRollupTaskGeneratorTest.java | 4 +-
.../RealtimeToOfflineSegmentsTaskExecutorTest.java | 13 +-
.../filebased/FileBasedSegmentWriterTest.java | 100 ++---
.../stream/kafka/KafkaJSONMessageDecoderTest.java | 6 +-
.../indexsegment/mutable/MutableSegmentImpl.java | 6 +
.../local/io/writer/impl/DirectMemoryManager.java | 2 +-
.../local/io/writer/impl/MmapMemoryManager.java | 2 +-
.../converter/stats/MutableColumnStatistics.java | 5 -
.../stats/MutableNoDictionaryColStatistics.java | 5 -
.../impl/forward/VarByteSVMutableForwardIndex.java | 5 +
.../impl/nullvalue/NullValueVectorCreator.java | 30 +-
.../BigDecimalColumnPreIndexStatsCollector.java | 5 -
.../stats/BytesColumnPredIndexStatsCollector.java | 5 -
.../stats/DoubleColumnPreIndexStatsCollector.java | 5 -
.../stats/FloatColumnPreIndexStatsCollector.java | 5 -
.../stats/IntColumnPreIndexStatsCollector.java | 5 -
.../stats/LongColumnPreIndexStatsCollector.java | 5 -
.../stats/StringColumnPreIndexStatsCollector.java | 5 -
.../defaultcolumn/DefaultColumnStatistics.java | 6 -
.../segment/readers/PinotSegmentColumnReader.java | 2 +
.../ExpressionTransformerTest.java | 95 ++--
.../recordtransformer/RecordTransformerTest.java | 83 ++--
.../SegmentGenerationWithFilterRecordsTest.java | 4 +-
.../index/loader/SegmentPreProcessorTest.java | 14 +-
.../segment/local/utils/IngestionUtilsTest.java | 81 ++--
.../segment/local/utils/TableConfigUtilsTest.java | 263 ++++-------
.../pinot/segment/spi/AggregationFunctionType.java | 1 +
.../spi/creator/ColumnIndexCreationInfo.java | 4 -
.../segment/spi/creator/ColumnStatistics.java | 5 -
.../spi/index/mutable/MutableForwardIndex.java | 10 +
.../pinot/server/starter/ServerInstance.java | 2 +-
.../server/api/PinotServerAppConfigsTest.java | 7 +-
.../table/ingestion/BatchIngestionConfig.java | 6 +-
.../config/table/ingestion/IngestionConfig.java | 15 +-
.../spi/data/readers/RecordReaderFactory.java | 3 +-
...eporterMetricsRegistryRegistrationListener.java | 3 +-
.../MetricsRegistryRegistrationListener.java | 3 +-
.../pinot/spi}/metrics/PinotMetricUtils.java | 8 +-
.../java/org/apache/pinot/spi/utils/JsonUtils.java | 21 +-
.../pinot/spi/utils/IngestionConfigUtilsTest.java | 31 +-
.../pinot/tools/admin/command/AddTableCommand.java | 2 +-
pom.xml | 2 +-
131 files changed, 1589 insertions(+), 839 deletions(-)
create mode 100644
pinot-core/src/main/java/org/apache/pinot/core/query/aggregation/function/HistogramAggregationFunction.java
create mode 100644
pinot-core/src/main/java/org/apache/pinot/core/query/aggregation/utils/DoubleVectorOpUtils.java
create mode 100644
pinot-core/src/test/java/org/apache/pinot/queries/HistogramQueriesTest.java
rename {pinot-common/src/main/java/org/apache/pinot/common =>
pinot-spi/src/main/java/org/apache/pinot/spi}/metrics/JmxReporterMetricsRegistryRegistrationListener.java
(93%)
rename {pinot-common/src/main/java/org/apache/pinot/common =>
pinot-spi/src/main/java/org/apache/pinot/spi}/metrics/MetricsRegistryRegistrationListener.java
(91%)
rename {pinot-common/src/main/java/org/apache/pinot/common =>
pinot-spi/src/main/java/org/apache/pinot/spi}/metrics/PinotMetricUtils.java
(96%)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]