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

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


 discard 5f08b3a  Adding scalar function JsonPathArray to extract arrays from 
json
     add 7649f9f  Remove the usage of deprecated range delimiter (#6475)
     add 04e2bcc  Update superset docker image repo (#6477)
     add dde3c18  TLS-support for client-pinot and pinot-internode connections 
(#6418)
     add 830eb94  [TE]frontend - Activate the composite anomalies route (#6472)
     add ec15f41  Bump up quartz version to 2.3.2 to prevent XXE (#6484)
     add 63d4266  Create CONTRIBUTING.md (#6481)
     add e209230  Create CODE_OF_CONDUCT.md (#6482)
     add e5bf05b  Fix the overflow issue when loading the large dictionary into 
the buffer (#6476)
     add f292730  Fix missing copyrights (#6489)
     add 98803dd  Adding pinot minion metrics to jmx prometheus reporter (#6488)
     add bacaed2  Guard against multiple consuming segments for same partition 
(#6483)
     new 93eb9db  Adding scalar function JsonPathArray to extract arrays from 
json

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   (5f08b3a)
            \
             N -- N -- N   
refs/heads/adding_scalar_function_to_extract_json_array (93eb9db)

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 1 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:
 CODE_OF_CONDUCT.md                                 |  96 ++++++++
 CONTRIBUTING.md                                    | 234 ++++++++++++++++++
 docker/images/pinot-superset/Dockerfile            |   2 +-
 .../etc/jmx_prometheus_javaagent/configs/pinot.yml |   7 +
 .../broker/broker/BrokerAdminApiApplication.java   |  23 +-
 .../broker/broker/helix/HelixBrokerStarter.java    |  36 ++-
 .../requesthandler/BaseBrokerRequestHandler.java   |   4 +-
 .../SingleConnectionBrokerRequestHandler.java      |   5 +-
 .../routing/segmentpruner/TimeSegmentPruner.java   |  42 ++--
 .../LiteralOnlyBrokerRequestTest.java              |   4 +-
 .../requesthandler/RangeMergeOptimizerTest.java    |  20 +-
 .../apache/pinot/common/utils/CommonConstants.java |  25 ++
 .../common/utils/FileUploadDownloadClient.java     |  40 ++-
 .../apache/pinot/parsers/utils/ParserUtils.java    |  16 +-
 .../parsers/pql2/ast/BetweenPredicateAstNode.java  |   7 +-
 .../pql2/ast/ComparisonPredicateAstNode.java       |  17 +-
 .../apache/pinot/pql/parsers/Pql2CompilerTest.java |  10 +-
 .../spark/connector/PinotServerDataFetcher.scala   |   2 +
 .../apache/pinot/controller/ControllerConf.java    |  32 ++-
 .../apache/pinot/controller/ControllerStarter.java |  29 ++-
 .../api/ControllerAdminApiApplication.java         |  65 +----
 .../api/resources/PinotQueryResource.java          |  21 +-
 .../api/resources/ServerTableSizeReader.java       |   2 +-
 .../helix/core/PinotHelixResourceManager.java      |  22 +-
 .../realtime/PinotLLCRealtimeSegmentManager.java   |  19 ++
 .../controller/util/CompletionServiceHelper.java   |   7 +-
 .../util/ConsumingSegmentInfoReader.java           |   2 +-
 .../pinot/controller/util/ListenerConfigUtil.java  |  93 -------
 .../util/ServerSegmentMetadataReader.java          |   2 +-
 .../api/ConsumingSegmentInfoReaderTest.java        |   2 +-
 .../controller/api/PinotSegmentsMetadataTest.java  |   2 +-
 .../controller/api/ServerTableSizeReaderTest.java  |   2 +-
 .../pinot/controller/api/TableSizeReaderTest.java  |   2 +-
 .../helix/core/PinotHelixResourceManagerTest.java  |   4 +-
 .../controller/util/ListenerConfigUtilTest.java    |  44 ++--
 pinot-core/pom.xml                                 |   9 +
 .../filter/MergeRangeFilterOptimizer.java          |   5 +-
 .../request/context/predicate/RangePredicate.java  |  18 +-
 .../core/requesthandler/RangeMergeOptimizer.java   |   3 +-
 .../segment/store/SingleFileIndexDirectory.java    |   6 +-
 .../pinot/core/transport}/ListenerConfig.java      |  36 +--
 .../apache/pinot/core/transport/QueryRouter.java   |  34 ++-
 .../apache/pinot/core/transport/QueryServer.java   |  51 ++++
 .../pinot/core/transport/ServerChannels.java       |  44 ++++
 .../pinot/core/transport/ServerInstance.java       |  21 ++
 .../core/transport/ServerRoutingInstance.java      |  30 ++-
 .../org/apache/pinot/core/transport/TlsConfig.java |  77 ++++++
 .../apache/pinot/core/util/ListenerConfigUtil.java | 207 ++++++++++++++++
 .../java/org/apache/pinot/core/util/TlsUtils.java  | 269 +++++++++++++++++++++
 .../NoDictionaryRangePredicateEvaluatorTest.java   | 104 ++++----
 .../core/query/optimizer/QueryOptimizerTest.java   |  32 +--
 .../org/apache/pinot/server/conf/ServerConf.java   |  20 +-
 .../pinot/server/starter/ServerInstance.java       |  48 +++-
 .../server/starter/helix/AdminApiApplication.java  |  25 +-
 .../server/starter/helix/HelixServerStarter.java   |  40 ++-
 .../apache/pinot/server/api/AccessControlTest.java |  11 +-
 .../apache/pinot/server/api/BaseResourceTest.java  |  12 +-
 .../batch/spec/SegmentGenerationJobSpec.java       |  13 +
 .../pinot/spi/ingestion/batch/spec/TlsSpec.java    |  45 ++--
 .../org/apache/pinot/tools/BootstrapTableTool.java |  32 ++-
 .../tools/admin/command/AddSchemaCommand.java      |  18 +-
 .../pinot/tools/admin/command/AddTableCommand.java |  17 +-
 .../tools/admin/command/AddTenantCommand.java      |  13 +-
 .../tools/admin/command/BootstrapTableCommand.java |   6 +-
 .../tools/admin/command/ChangeTableState.java      |  18 +-
 .../command/LaunchDataIngestionJobCommand.java     |   9 +
 .../admin/command/OperateClusterConfigCommand.java |  15 +-
 .../tools/admin/command/PostQueryCommand.java      |  15 +-
 .../tools/admin/command/UploadSegmentCommand.java  |  15 +-
 .../tools/scan/query/RangePredicateFilter.java     |  36 ++-
 pom.xml                                            |   2 +-
 .../app/pods/manage/explore/route.js               |  56 +++--
 .../app/utils/anomalies-tree-parser.js             |   3 +
 73 files changed, 1819 insertions(+), 536 deletions(-)
 create mode 100644 CODE_OF_CONDUCT.md
 create mode 100644 CONTRIBUTING.md
 delete mode 100644 
pinot-controller/src/main/java/org/apache/pinot/controller/util/ListenerConfigUtil.java
 rename 
{pinot-controller/src/main/java/org/apache/pinot/controller/api/listeners => 
pinot-core/src/main/java/org/apache/pinot/core/transport}/ListenerConfig.java 
(67%)
 create mode 100644 
pinot-core/src/main/java/org/apache/pinot/core/transport/TlsConfig.java
 create mode 100644 
pinot-core/src/main/java/org/apache/pinot/core/util/ListenerConfigUtil.java
 create mode 100644 
pinot-core/src/main/java/org/apache/pinot/core/util/TlsUtils.java
 rename 
pinot-controller/src/main/java/org/apache/pinot/controller/api/listeners/TlsConfiguration.java
 => 
pinot-spi/src/main/java/org/apache/pinot/spi/ingestion/batch/spec/TlsSpec.java 
(64%)


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

Reply via email to