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

github-bot pushed a change to branch 
dependabot/maven/net.openhft-chronicle-core-2.26ea0
in repository https://gitbox.apache.org/repos/asf/pinot.git


 discard 65963672c1 Bump net.openhft:chronicle-core from 2.25ea15 to 2.25.16
     add 4eeae1197d Bump net.openhft:posix from 2.25ea0 to 2.26ea0 (#13273)
     add 18afbb440d add metrics for IdeaState update (#13266)
     add 2719c5c9bc Returning tables names failing authorization in Exception 
of Multi State Engine Queries (#13195)
     add fc9f34fedc lucene `IndexOutOfBounds` bugfix, and use 
NRTCachingDirectory for realtime segment (#13308)
     add 66bce7132c Short circuit SubPlanFragmenter because we don't support 
multiple sub-plans yet (#13306)
     add db69d3d54a Add FunnelMaxStepAggregationFunction and 
FunnelCompleteCountAggregationFunction (#13231)
     add 9822100fc0 Add config to skip record ingestion on string column length 
exceeding configured max schema length (#13103)
     add 164cd819cf report rebalance job status for the early returns like 
noops (#13281)
     add 970d9b9d78 Fix the NPE from IS update metrics (#13313)
     add e53d887fa5 Bump org.checkerframework:checker-qual from 3.43.0 to 
3.44.0 (#13309)
     add 93ebc328b9 Bump org.apache.maven.plugins:maven-jxr-plugin from 3.3.2 
to 3.4.0 (#13310)
     add bdef83b749 Add metrics to count joins and window functions (#13032)
     add 065f325b53 Bump software.amazon.awssdk:bom from 2.25.64 to 2.25.66 
(#13316)
     add fc7eb4a0a8 Bump net.openhft:chronicle-core from 2.25ea15 to 2.25.16

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   (65963672c1)
            \
             N -- N -- N   
refs/heads/dependabot/maven/net.openhft-chronicle-core-2.26ea0 (fc7eb4a0a8)

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:
 .../org/apache/pinot/broker/api/AccessControl.java |  68 ++-
 .../broker/AllowAllAccessControlFactory.java       |  11 +-
 .../pinot/broker/broker/AuthenticationFilter.java  |  14 +-
 .../broker/BasicAuthAccessControlFactory.java      |  35 +-
 .../broker/ZkBasicAuthAccessControlFactory.java    |  26 +-
 .../requesthandler/BaseBrokerRequestHandler.java   |  12 +-
 .../BaseSingleStageBrokerRequestHandler.java       |  20 +-
 .../MultiStageBrokerRequestHandler.java            |  48 ++-
 .../api/AccessControlBackwardCompatibleTest.java   |  97 +++++
 .../broker/broker/BasicAuthAccessControlTest.java  |  50 ++-
 .../common/function/TransformFunctionType.java     |   3 +
 .../common/function/scalar/ArrayFunctions.java     |  18 +
 .../apache/pinot/common/metrics/BrokerMeter.java   |  28 +-
 .../apache/pinot/common/metrics/BrokerMetrics.java |  10 +-
 .../pinot/common/metrics/ControllerMeter.java      |   4 +-
 .../pinot/common/metrics/ControllerMetrics.java    |   6 +-
 .../pinot/common/metrics/ControllerTimer.java      |   3 +-
 .../apache/pinot/common/metrics/MinionMetrics.java |   6 +-
 .../apache/pinot/common/metrics/ServerMeter.java   |   1 +
 .../apache/pinot/common/metrics/ServerMetrics.java |   9 +-
 .../pinot/common/utils/helix/HelixHelper.java      |  31 +-
 .../apache/pinot/common/data/FieldSpecTest.java    |   3 +-
 .../function/FunctionDefinitionRegistryTest.java   |   7 +-
 .../core/rebalance/NoOpTableRebalanceObserver.java |   4 +
 .../core/rebalance/TableRebalanceObserver.java     |   2 +
 .../helix/core/rebalance/TableRebalancer.java      |  79 ++--
 .../rebalance/ZkBasedTableRebalanceObserver.java   |  12 +-
 .../cleanup/SchemaCleanupTaskStatelessTest.java    |   3 +
 .../pinot/core/auth/FineGrainedAccessControl.java  |  18 +
 .../realtime/RealtimeSegmentDataManager.java       |   6 +
 .../function/AggregationFunctionFactory.java       |   8 +-
 .../FunnelBaseAggregationFunction.java}            | 130 ++----
 .../FunnelCompleteCountAggregationFunction.java    | 110 +++++
 .../window/FunnelMatchStepAggregationFunction.java | 127 ++++++
 .../window/FunnelMaxStepAggregationFunction.java   | 110 +++++
 .../integration/tests/custom/WindowFunnelTest.java | 459 ++++++++++++++++++++-
 .../org/apache/pinot/query/QueryEnvironment.java   |   3 +-
 .../pinot/query/planner/QueryPlanMetadata.java     |  61 ---
 .../planner/logical/PinotLogicalQueryPlanner.java  | 138 ++++---
 .../planner/logical/RelToPlanNodeConverter.java    |   2 +-
 .../query/planner/logical/SubPlanFragmenter.java   |   6 +-
 .../recordtransformer/SanitizationTransformer.java | 190 ++++++++-
 .../local/segment/creator/TransformPipeline.java   |  12 +
 .../creator/impl/text/LuceneTextIndexCreator.java  |  19 +-
 .../recordtransformer/RecordTransformerTest.java   | 209 +++++++++-
 .../pinot/segment/spi/AggregationFunctionType.java |  19 +
 .../annotations/metrics/PinotMetricsFactory.java   |  34 ++
 ...{AuthProvider.java => AuthorizationResult.java} |  28 +-
 .../spi/auth/BasicAuthorizationResultImpl.java     |  83 ++++
 .../pinot/spi/auth/TableAuthorizationResult.java   |  74 ++++
 .../apache/pinot/spi/data/DimensionFieldSpec.java  |   8 +-
 .../java/org/apache/pinot/spi/data/FieldSpec.java  |  27 ++
 .../org/apache/pinot/spi/data/MetricFieldSpec.java |   2 +-
 .../apache/pinot/spi/data/readers/GenericRow.java  |   2 +
 .../spi/metrics/NoopPinotMetricsRegistry.java      | 228 ++++++++++
 .../apache/pinot/spi/metrics/PinotMetricUtils.java |  13 +-
 .../spi/auth/BasicAuthorizationResultImplTest.java |  61 +++
 .../spi/auth/TableAuthorizationResultTest.java     |  68 +++
 pom.xml                                            |   8 +-
 59 files changed, 2454 insertions(+), 419 deletions(-)
 create mode 100644 
pinot-broker/src/test/java/org/apache/pinot/broker/api/AccessControlBackwardCompatibleTest.java
 rename 
pinot-core/src/main/java/org/apache/pinot/core/query/aggregation/function/funnel/{FunnelMaxStepAggregationFunction.java
 => window/FunnelBaseAggregationFunction.java} (69%)
 create mode 100644 
pinot-core/src/main/java/org/apache/pinot/core/query/aggregation/function/funnel/window/FunnelCompleteCountAggregationFunction.java
 create mode 100644 
pinot-core/src/main/java/org/apache/pinot/core/query/aggregation/function/funnel/window/FunnelMatchStepAggregationFunction.java
 create mode 100644 
pinot-core/src/main/java/org/apache/pinot/core/query/aggregation/function/funnel/window/FunnelMaxStepAggregationFunction.java
 delete mode 100644 
pinot-query-planner/src/main/java/org/apache/pinot/query/planner/QueryPlanMetadata.java
 copy pinot-spi/src/main/java/org/apache/pinot/spi/auth/{AuthProvider.java => 
AuthorizationResult.java} (57%)
 create mode 100644 
pinot-spi/src/main/java/org/apache/pinot/spi/auth/BasicAuthorizationResultImpl.java
 create mode 100644 
pinot-spi/src/main/java/org/apache/pinot/spi/auth/TableAuthorizationResult.java
 create mode 100644 
pinot-spi/src/main/java/org/apache/pinot/spi/metrics/NoopPinotMetricsRegistry.java
 create mode 100644 
pinot-spi/src/test/java/org/apache/pinot/spi/auth/BasicAuthorizationResultImplTest.java
 create mode 100644 
pinot-spi/src/test/java/org/apache/pinot/spi/auth/TableAuthorizationResultTest.java


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

Reply via email to