This is an automated email from the ASF dual-hosted git repository.
snlee pushed a change to branch avro-gz-improvment
in repository https://gitbox.apache.org/repos/asf/pinot.git
omit ee912fa020 Improving gz support for avro record readers
add eb5e5d3045 [multistage][reland] fix leaf stage return data schema
(#9929)
add e225528786 Clean up TableDataManagerConfig to be a thin wrapper over
instance and table config (#9920)
add 3a37f036b8 fixed flaky test in LoggerUtilsTest.java (#9939)
add 852477bdf3 Add Variance and Standard Deviation Aggregation Functions
(#9910)
add 90ae32dcbf Improving gz support for avro record readers
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 (ee912fa020)
\
N -- N -- N refs/heads/avro-gz-improvment (90ae32dcbf)
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:
.../apache/pinot/common/utils/LoggerUtilsTest.java | 4 +-
.../apache/pinot/core/common/ObjectSerDeUtils.java | 26 +-
.../core/data/manager/BaseTableDataManager.java | 5 +
.../manager/offline/TableDataManagerProvider.java | 3 +-
.../function/AggregationFunctionFactory.java | 8 +
.../function/CovarianceAggregationFunction.java | 31 +-
.../function/VarianceAggregationFunction.java | 188 ++++++
.../utils/StatisticalAggregationFunctionUtils.java | 53 ++
.../BaseTableDataManagerAcquireSegmentTest.java | 6 +-
.../offline/DimensionTableDataManagerTest.java | 18 +-
.../realtime/LLRealtimeSegmentDataManagerTest.java | 11 +-
.../executor/QueryExecutorExceptionsTest.java | 18 +-
.../core/query/executor/QueryExecutorTest.java | 24 +-
.../org/apache/pinot/queries/BaseQueriesTest.java | 16 +-
.../pinot/queries/CovarianceQueriesTest.java | 461 -------------
.../pinot/queries/ExplainPlanQueriesTest.java | 14 +-
.../queries/SegmentWithNullValueVectorTest.java | 22 +-
.../pinot/queries/StatisticalQueriesTest.java | 749 +++++++++++++++++++++
.../apache/pinot/query/runtime/QueryRunner.java | 47 +-
.../LeafStageTransferableBlockOperator.java | 233 ++++++-
.../LeafStageTransferableBlockOperatorTest.java | 170 ++++-
.../src/test/resources/queries/Aggregates.json | 94 ++-
.../src/test/resources/queries/Distincts.json | 51 ++
.../src/test/resources/queries/MathFuncs.json | 10 +
.../test/resources/queries/SelectExpressions.json | 15 +-
.../{AvgPair.java => VarianceTuple.java} | 65 +-
.../local/data/manager/TableDataManager.java | 5 +
.../local/data/manager/TableDataManagerConfig.java | 165 ++---
.../data/manager/TableDataManagerConfigTest.java | 74 --
.../pinot/segment/spi/AggregationFunctionType.java | 4 +
.../starter/helix/HelixInstanceDataManager.java | 4 +-
.../tools/admin/command/QuickstartRunner.java | 2 +-
32 files changed, 1712 insertions(+), 884 deletions(-)
create mode 100644
pinot-core/src/main/java/org/apache/pinot/core/query/aggregation/function/VarianceAggregationFunction.java
create mode 100644
pinot-core/src/main/java/org/apache/pinot/core/query/aggregation/utils/StatisticalAggregationFunctionUtils.java
delete mode 100644
pinot-core/src/test/java/org/apache/pinot/queries/CovarianceQueriesTest.java
create mode 100644
pinot-core/src/test/java/org/apache/pinot/queries/StatisticalQueriesTest.java
create mode 100644
pinot-query-runtime/src/test/resources/queries/Distincts.json
copy
pinot-segment-local/src/main/java/org/apache/pinot/segment/local/customobject/{AvgPair.java
=> VarianceTuple.java} (53%)
delete mode 100644
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/data/manager/TableDataManagerConfigTest.java
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]