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

xiangfu pushed a change to branch support_alias_phase_1
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.


 discard be1c976  Support alias replacement in PinotQuery
 discard 02b7d5c  Make toExpression by default converts SqlNode to function
     add 23a4c04   Adding script for local port-forwarding and open PrestoUI 
console  (#5017)
     add 14d790f  Add documentation to fields of important query execution 
stats. (#4989)
     add 9410dd1  [TE] Use upper and lower bounds as predicted for threshold 
algorithm (#4960)
     add f6d33be  For RANGE predicate queries touching offline segments, use 
sorted inverted index (#5013)
     add 96a55cb  [TE][detection] Implement anomalies cache to speed up 
detection (#4900)
     add 1d0c936  Enhance TableRebalancer to support reassigning COMPLETED 
segments when instances changed (#5015)
     add daf02ac  Make output schema to match selection list for aggregation 
groupbys (#5019)
     add e0f363a  Make toExpression by default converts SqlNode to function
     add ffc1779  Support alias replacement in PinotQuery
     add b69e8b5  Adding validation for selection alias

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   (be1c976)
            \
             N -- N -- N   refs/heads/support_alias_phase_1 (b69e8b5)

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:
 .../helm/{open-superset-ui.sh => presto-cli.sh}    |  10 +-
 .../common/assignment/InstancePartitions.java      |   5 +
 .../common/assignment/InstancePartitionsUtils.java |  13 +-
 .../instance/InstanceAssignmentConfigUtils.java    |  29 ++-
 .../pinot/common/utils/request/RequestUtils.java   |  29 +++
 .../parsers/PinotQuery2BrokerRequestConverter.java |   3 +-
 .../apache/pinot/sql/parsers/CalciteSqlParser.java |  69 ++++--
 .../pinot/sql/parsers/CalciteSqlCompilerTest.java  |  73 +++++-
 .../segment/RealtimeSegmentAssignment.java         | 123 +++++++----
 .../helix/core/rebalance/TableRebalancer.java      |  61 ++++--
 .../core/relocation/RealtimeSegmentRelocator.java  |  65 +++---
 ...altimeNonReplicaGroupSegmentAssignmentTest.java |  20 +-
 .../RealtimeReplicaGroupSegmentAssignmentTest.java |  20 +-
 .../pinot/core/operator/ExecutionStatistics.java   |   9 +
 .../dociditerators/ScanBasedDocIdIterator.java     |   2 +-
 .../dociditerators/SortedDocIdIterator.java        |   6 -
 .../core/operator/docidsets/BitmapDocIdSet.java    |   1 +
 .../core/operator/docidsets/SizeBasedDocIdSet.java |   3 +-
 .../core/operator/docidsets/SortedDocIdSet.java    |   1 +
 .../core/operator/filter/FilterOperatorUtils.java  |  12 +-
 .../SortedInvertedIndexBasedFilterOperator.java    | 154 +++++++------
 .../predicate/RangePredicateEvaluatorFactory.java  |  10 +-
 .../query/DictionaryBasedAggregationOperator.java  |   2 +-
 .../core/query/reduce/GroupByDataTableReducer.java |  95 +++++++-
 .../RangePredicateWithSortedInvertedIndexTest.java | 244 +++++++++++++++++++++
 .../tests/BaseClusterIntegrationTestSet.java       |   4 +
 ...onaryAggregationPlanClusterIntegrationTest.java |   4 +-
 thirdeye/pom.xml                                   |   2 +-
 .../dashboard/resources/v2/AnomaliesResource.java  |   8 +-
 .../pinot/thirdeye/datalayer/dto/AbstractDTO.java  |   3 +-
 .../datalayer/dto/MergedAnomalyResultDTO.java      |   6 +-
 .../thirdeye/datalayer/pojo/AbstractBean.java      |   3 +-
 .../datalayer/pojo/MergedAnomalyResultBean.java    |   3 +-
 .../thirdeye/datasource/ThirdEyeCacheRegistry.java |   2 +-
 .../thirdeye/detection/DefaultDataProvider.java    | 162 +++-----------
 .../detection/DetectionPipelineTaskRunner.java     |   5 +-
 .../thirdeye/detection/DetectionResource.java      |  13 +-
 .../pinot/thirdeye/detection/DetectionUtils.java   |  22 ++
 .../pinot/thirdeye/detection/alert/AlertUtils.java |   8 +-
 .../detection/alert/DetectionAlertTaskFactory.java |   6 +-
 .../detection/alert/DetectionAlertTaskRunner.java  |   1 -
 .../detection/algorithm/DimensionWrapper.java      |  29 +++
 .../detection/algorithm/MovingWindowAlgorithm.java |  10 +-
 .../cache/builder/AnomaliesCacheBuilder.java       | 170 ++++++++++++++
 .../cache/builder/TimeSeriesCacheBuilder.java      | 168 ++++++++++++++
 .../components/ThresholdRuleDetector.java          |  18 +-
 .../finetune/GridSearchTuningAlgorithm.java        |   6 +-
 .../onboard/YamlOnboardingTaskRunner.java          |   5 +-
 .../thirdeye/detection/spi/model/AnomalySlice.java |  38 +++-
 .../detection/wrapper/AnomalyDetectorWrapper.java  |   2 -
 .../thirdeye/detection/yaml/YamlResource.java      |   6 +-
 .../src/main/resources/schema/drop-tables.sql      |  16 +-
 .../csv/CSVThirdEyeDataSourceIntegrationTest.java  |   1 -
 .../MockThirdEyeDataSourceIntegrationTest.java     |   1 -
 .../pinot/thirdeye/detection/DataProviderTest.java |  33 +--
 .../pinot/thirdeye/detection/MockDataProvider.java |  21 +-
 .../alert/DetectionAlertTaskFactoryTest.java       |   2 +-
 .../thirdeye/detection/alert/SendAlertTest.java    |  35 +--
 .../alert/scheme/DetectionEmailAlerterTest.java    |   6 +-
 .../alert/scheme/DetectionJiraAlerterTest.java     |   4 +-
 .../detection/algorithm/DimensionWrapperTest.java  |  40 ++++
 .../components/ThresholdRuleDetectorTest.java      |   2 +-
 .../integration/NotificationTaskSchedulerTest.java |   5 +-
 .../templates/TestEntityGroupKeyContent.java       |   6 +-
 .../templates/TestMetricAnomaliesContent.java      |  17 +-
 .../channels/TestJiraContentFormatter.java         |   9 +-
 .../tools/RunAdhocDatabaseQueriesTool.java         |  31 ++-
 .../test/resources/data-sources/cache-config.yml   |   2 +-
 68 files changed, 1477 insertions(+), 517 deletions(-)
 copy kubernetes/helm/{open-superset-ui.sh => presto-cli.sh} (76%)
 mode change 100755 => 100644
 create mode 100644 
pinot-core/src/test/java/org/apache/pinot/queries/RangePredicateWithSortedInvertedIndexTest.java
 create mode 100644 
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/cache/builder/AnomaliesCacheBuilder.java
 create mode 100644 
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/cache/builder/TimeSeriesCacheBuilder.java


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to