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

jlli pushed a change to branch release-0.6.0-rc-1
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.


 discard 9525e93  [maven-release-plugin] prepare for next development iteration
    omit bb646ba  [maven-release-plugin] prepare release release-0.6.0-rc1
    omit 7689313  Add profile release-sign-artifacts for pinot-spark-connector
     add 75afca3  added hash functions(sha-1, sha-256, md5, etc) (#6218)
     add b7819e1  Adding a new Server API for computing average off heap memory 
consumed (#6172)
     add d19d604  Adding bootstrap table command and move quickstart to use it 
(#6220)
     add 9942424  Add upsert to readme (#6221)
     add e3b0bfc  scalar functions for array (#6105)
     add bee125e  showing Query Result as blank table and json format toggle 
even if query response has 0 records (#6223)
     add d033a11  Add profile release-sign-artifacts for pinot-spark-connector 
(#6229)
     add ca8545b  [TE] frontend - abachuk/alert-details-ui-tweaks - formatting 
alert header (#6210)
     add 2d446d2  [TE] Remove maven-shade-plugin and switch from 
org.reflections to io.classgraph (#6238)
     add 4586279  [TE]frontend - Refactor detection-health and stats component 
(#6227)
     add 8ce2271  Adding support of logical functions AND and OR (#6249)
     add c8d7efc  Make default operator for multi-term and phrase text search 
queries configurable (#6251)
     add bd2a6ce  Bug-fix: Fix logging potentialy null variable. (#6252)
     add 750af31  Always read start/end time in millis from the segment ZK 
metadata (#6239)
     add 5a53fbe  Replace sql literal regex replace (#6258)
     add 9eaea99  Add stream and batch to ingestionConfig (#6247)
     add f40c2ac  Set S3 Bucket ACL policy from config (#6272)
     add 96647ad  Allow setting HTTP headers and parameters during schema 
upload (#6270)
     add c757f24  Update download page for release 0.6.0 (#6274)
     add b009fd8  Improve comparison coverage for selection SQL queries in 
ClusterIntegrationTestUtils(#6193) (#6224)
     new 27ad9bf  [maven-release-plugin] prepare release release-0.6.0-rc1
     new d2ab9a6  [maven-release-plugin] prepare for next development iteration

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   (9525e93)
            \
             N -- N -- N   refs/heads/release-0.6.0-rc-1 (d2ab9a6)

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.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 README.md                                          |   2 +
 .../requesthandler/BaseBrokerRequestHandler.java   |   2 +-
 .../routing/timeboundary/TimeBoundaryManager.java  |  97 +++--
 .../pinot/common/function/FunctionInvoker.java     |  19 +-
 .../pinot/common/function/FunctionUtils.java       |  32 ++
 .../common/function/TransformFunctionType.java     |   3 +
 .../common/function/scalar/ArrayFunctions.java     |  80 ++++
 .../common/function/scalar/HashFunctions.java      |  82 ++++
 .../common/metadata/segment/SegmentZKMetadata.java | 291 +++++++--------
 .../common/tier/TimeBasedTierSegmentSelector.java  |   7 +-
 .../apache/pinot/common/utils/CommonConstants.java |  12 +-
 .../common/utils/FileUploadDownloadClient.java     |  25 +-
 .../apache/pinot/common/utils/PinotDataType.java   |  32 +-
 .../common/utils/config/TableConfigUtils.java      |   2 +-
 .../pinot/common/utils/request/RequestUtils.java   |   2 +-
 .../pinot/common/data/DateTimeFormatSpecTest.java  |  70 ++--
 .../common/utils/config/TableConfigSerDeTest.java  |  27 +-
 .../helix/core/PinotHelixResourceManager.java      |  14 +-
 .../helix/core/PinotTableIdealStateBuilder.java    |   3 +-
 .../RealtimeToOfflineSegmentsTaskGenerator.java    |  26 +-
 .../realtime/PinotLLCRealtimeSegmentManager.java   |   9 +-
 .../core/realtime/PinotRealtimeSegmentManager.java |   7 +-
 .../core/realtime/SegmentCompletionManager.java    |   5 +-
 .../helix/core/rebalance/TableRebalancer.java      |   3 +-
 .../helix/core/relocation/SegmentRelocator.java    |   4 +-
 .../helix/core/retention/RetentionManager.java     |   3 +-
 .../retention/strategy/TimeRetentionStrategy.java  |  13 +-
 .../controller/util/TableRetentionValidator.java   |  23 +-
 .../validation/OfflineSegmentIntervalChecker.java  |  18 +-
 .../RealtimeSegmentValidationManager.java          |   6 +-
 .../src/main/resources/app/pages/Query.tsx         |  25 +-
 .../main/resources/app/utils/PinotMethodUtils.ts   |   2 +-
 .../PinotLLCRealtimeSegmentManagerTest.java        |  19 +-
 .../realtime/HLRealtimeSegmentDataManager.java     |   3 +-
 .../realtime/LLRealtimeSegmentDataManager.java     |   4 +-
 ...tion.java => AndOperatorTransformFunction.java} |  25 +-
 .../function/LogicalOperatorTransformFunction.java |  79 ++++
 ...ction.java => OrOperatorTransformFunction.java} |  25 +-
 .../function/ScalarTransformFunctionWrapper.java   | 122 +++++-
 .../function/TransformFunctionFactory.java         |   5 +
 .../realtime/impl/RealtimeSegmentStatsHistory.java |  30 +-
 .../segment/index/loader/IndexLoadingConfig.java   |   4 +
 .../index/readers/text/LuceneTextIndexReader.java  |   8 +
 .../org/apache/pinot/core/util/ArrayCopyUtils.java |   6 +
 .../org/apache/pinot/core/util/IngestionUtils.java |   5 +-
 .../apache/pinot/core/util/ReplicationUtils.java   |   5 +-
 .../apache/pinot/core/util/TableConfigUtils.java   |  49 ++-
 .../core/data/function/InbuiltFunctionsTest.java   |  67 ++++
 .../ExpressionTransformerTest.java                 |  10 +-
 .../recordtransformer/RecordTransformerTest.java   |  18 +-
 .../function/AndOperatorTransformFunctionTest.java |  20 +-
 .../function/BaseTransformFunctionTest.java        |  52 ++-
 .../LogicalOperatorTransformFunctionTest.java      |  81 ++++
 .../function/OrOperatorTransformFunctionTest.java  |  20 +-
 .../ScalarTransformFunctionWrapperTest.java        | 280 ++++++++++++--
 .../impl/RealtimeSegmentStatsHistoryTest.java      |  24 ++
 .../SegmentGenerationWithFilterRecordsTest.java    |  10 +-
 .../apache/pinot/core/util/IngestionUtilsTest.java |  41 +-
 .../apache/pinot/core/util/SchemaUtilsTest.java    |   6 +-
 .../pinot/core/util/TableConfigUtilsTest.java      | 120 ++++--
 .../pinot/queries/TextSearchQueriesTest.java       |  49 ++-
 .../tests/BaseClusterIntegrationTest.java          |  49 +--
 .../tests/ClusterIntegrationTestUtils.java         | 415 +++++++++++----------
 .../IngestionConfigHybridIntegrationTest.java      |  17 +-
 .../LuceneRealtimeClusterIntegrationTest.java      |   1 -
 .../tests/MapTypeClusterIntegrationTest.java       |   7 +-
 .../tests/OfflineClusterIntegrationTest.java       |  28 ++
 ...rformance_2014_100k_subset.test_queries_500.sql |  10 +-
 .../RealtimeToOfflineSegmentsTaskExecutor.java     |  16 +-
 .../RealtimeToOfflineSegmentsTaskExecutorTest.java |   6 +-
 .../batch/common/SegmentGenerationTaskRunner.java  |   8 +-
 .../pinot/hadoop/job/HadoopSegmentCreationJob.java |   3 +-
 .../hadoop/job/HadoopSegmentPreprocessingJob.java  |  11 +-
 .../hadoop/job/mappers/SegmentCreationMapper.java  |   6 +-
 .../spark/jobs/SparkSegmentCreationFunction.java   |   4 +-
 .../pinot/spark/jobs/SparkSegmentCreationJob.java  |   3 +-
 .../apache/pinot/plugin/filesystem/S3PinotFS.java  |  89 +++--
 .../server/api/resources/MmapDebugResource.java    |  43 +++
 .../server/api/resources/TableSizeResource.java    |   4 +-
 .../pinot/server/api/resources/TablesResource.java |   8 +-
 .../apache/pinot/spi/config/table/FieldConfig.java |   1 +
 .../pinot/spi/config/table/IndexingConfig.java     |   5 +
 .../SegmentsValidationAndRetentionConfig.java      |   9 +
 .../apache/pinot/spi/config/table/TableConfig.java |   1 +
 ...nsformConfig.java => BatchIngestionConfig.java} |  38 +-
 .../table/{ => ingestion}/IngestionConfig.java     |  30 +-
 ...ilterConfig.java => StreamIngestionConfig.java} |  19 +-
 .../apache/pinot/spi/data/DateTimeFormatSpec.java  |  58 +--
 .../pinot/spi/ingestion/batch/BatchConfig.java     | 133 +++++++
 .../spi/ingestion/batch/BatchConfigProperties.java |  49 +++
 .../pinot/spi/utils/IngestionConfigUtils.java      |  95 +++++
 .../spi/utils/builder/TableConfigBuilder.java      |   2 +-
 .../pinot/spi/ingestion/batch/BatchConfigTest.java | 171 +++++++++
 .../pinot/spi/utils/IngestionConfigUtilsTest.java  | 149 ++++++++
 .../org/apache/pinot/tools/BootstrapTableTool.java | 132 +++++++
 .../apache/pinot/tools/GitHubEventsQuickstart.java |   6 +-
 .../org/apache/pinot/tools/HybridQuickstart.java   |  44 +--
 .../java/org/apache/pinot/tools/Quickstart.java    |  24 +-
 .../apache/pinot/tools/QuickstartTableRequest.java |  79 ++--
 .../org/apache/pinot/tools/RealtimeQuickStart.java |  16 +-
 .../org/apache/pinot/tools/UpsertQuickStart.java   |  15 +-
 .../pinot/tools/admin/PinotAdministrator.java      |   2 +
 .../tools/admin/command/BootstrapTableCommand.java | 113 ++++++
 .../OfflineSegmentIntervalCheckerCommand.java      |   8 +-
 .../tools/admin/command/QuickstartRunner.java      |  19 +-
 .../segment/converter/SegmentMergeCommand.java     |   5 +-
 thirdeye/pom.xml                                   |  21 +-
 thirdeye/thirdeye-dashboard/pom.xml                |  44 ---
 thirdeye/thirdeye-frontend/.eslintrc.js            |  44 ++-
 .../app/pods/components/alert-details/template.hbs |  27 +-
 .../pods/components/detection-health/component.js  |  35 +-
 .../pods/components/detection-health/template.hbs  | 154 ++++----
 .../self-serve-alert-yaml-details/template.hbs     | 148 +++-----
 .../app/pods/components/stats-cards/template.hbs   | 116 ++----
 .../pods/components/timeseries-chart/component.js  | 205 ++++++----
 .../app/pods/home/index/template.hbs               | 127 ++++---
 .../app/pods/manage/explore/template.hbs           |  25 +-
 .../app/styles/components/button.scss              |  34 +-
 .../app/styles/shared/_styles.scss                 |  40 +-
 .../share-custom-template/component-test.js        |  34 +-
 .../thirdeye-frontend/tests/utils/constants.js     |   4 +-
 thirdeye/thirdeye-pinot/pom.xml                    |  38 +-
 .../registry/DetectionAlertRegistry.java           |  50 +--
 .../annotation/registry/DetectionRegistry.java     |  25 +-
 thirdeye/thirdeye-spi/pom.xml                      |   5 -
 website/src/pages/download.js                      |  44 +++
 website/src/pages/index.js                         |   6 +-
 127 files changed, 3709 insertions(+), 1601 deletions(-)
 create mode 100644 
pinot-common/src/main/java/org/apache/pinot/common/function/scalar/ArrayFunctions.java
 create mode 100644 
pinot-common/src/main/java/org/apache/pinot/common/function/scalar/HashFunctions.java
 copy 
pinot-core/src/main/java/org/apache/pinot/core/operator/transform/function/{EqualsTransformFunction.java
 => AndOperatorTransformFunction.java} (66%)
 create mode 100644 
pinot-core/src/main/java/org/apache/pinot/core/operator/transform/function/LogicalOperatorTransformFunction.java
 copy 
pinot-core/src/main/java/org/apache/pinot/core/operator/transform/function/{EqualsTransformFunction.java
 => OrOperatorTransformFunction.java} (66%)
 copy 
pinot-spi/src/main/java/org/apache/pinot/spi/utils/retry/NoDelayRetryPolicy.java
 => 
pinot-core/src/test/java/org/apache/pinot/core/operator/transform/function/AndOperatorTransformFunctionTest.java
 (69%)
 create mode 100644 
pinot-core/src/test/java/org/apache/pinot/core/operator/transform/function/LogicalOperatorTransformFunctionTest.java
 copy 
pinot-spi/src/main/java/org/apache/pinot/spi/utils/retry/NoDelayRetryPolicy.java
 => 
pinot-core/src/test/java/org/apache/pinot/core/operator/transform/function/OrOperatorTransformFunctionTest.java
 (70%)
 copy 
pinot-spi/src/main/java/org/apache/pinot/spi/config/table/ingestion/{TransformConfig.java
 => BatchIngestionConfig.java} (51%)
 rename pinot-spi/src/main/java/org/apache/pinot/spi/config/table/{ => 
ingestion}/IngestionConfig.java (63%)
 copy 
pinot-spi/src/main/java/org/apache/pinot/spi/config/table/ingestion/{FilterConfig.java
 => StreamIngestionConfig.java} (67%)
 create mode 100644 
pinot-spi/src/main/java/org/apache/pinot/spi/ingestion/batch/BatchConfig.java
 create mode 100644 
pinot-spi/src/main/java/org/apache/pinot/spi/ingestion/batch/BatchConfigProperties.java
 create mode 100644 
pinot-spi/src/main/java/org/apache/pinot/spi/utils/IngestionConfigUtils.java
 create mode 100644 
pinot-spi/src/test/java/org/apache/pinot/spi/ingestion/batch/BatchConfigTest.java
 create mode 100644 
pinot-spi/src/test/java/org/apache/pinot/spi/utils/IngestionConfigUtilsTest.java
 create mode 100644 
pinot-tools/src/main/java/org/apache/pinot/tools/BootstrapTableTool.java
 create mode 100644 
pinot-tools/src/main/java/org/apache/pinot/tools/admin/command/BootstrapTableCommand.java


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

Reply via email to