You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by jl...@apache.org on 2021/05/20 22:47:14 UTC

[incubator-pinot] branch add-two-broker-metrics updated (0fc2da3 -> 7537984)

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

jlli pushed a change to branch add-two-broker-metrics
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.


 discard 0fc2da3  Add NETTY_CONNECTION_SEND_REQUEST_LATENCY to broker timer metrics
 discard 008a925  Add SERVER_PROCESSING and NETTY_CONNECTION to broker query phase metrics
     add 98891a3  Fix rules to include DateTime column (#6937) (#6938)
     add 9becc57  Implement getRecord for immutableSegmentImpl (#6924)
     add 1b0bb72  Update Quickstart to take tmp dir as a parameter (#5445)
     add 57c1603  Fix CAST transform function for chained transforms (#6941)
     add fe322f5  Adding a new Controller API to retrieve ingestion status for realtime… (#6890)
     add 6f4790f  add command to infer pinot schema from json data (#6930)
     add 7b44624  Fix the exception thrown in the case that a specified table name does not exist (#6328) (#6765)
     add e400566  Add the complex-type support to decoder/reader (#6945)
     add f4ae3e0  Add collectionToJsonMode to schema inference (#6946)
     add 2eef906  Add SERVER_PROCESSING and NETTY_CONNECTION to broker query phase metrics
     add 7537984  Add NETTY_CONNECTION_SEND_REQUEST_LATENCY to broker timer metrics

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   (0fc2da3)
            \
             N -- N -- N   refs/heads/add-two-broker-metrics (7537984)

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:
 .../requesthandler/BaseBrokerRequestHandler.java   |  12 ++
 .../pinot/common/exception/QueryException.java     |  13 +-
 .../response/broker/BrokerResponseNative.java      |   2 +
 .../api/resources/PinotTableRestletResource.java   |  38 ++++
 .../helix/core/PinotHelixResourceManager.java      |  11 ++
 .../controller/recommender/io/InputManager.java    |  22 +--
 .../recommender/rules/impl/BloomFilterRule.java    |  12 +-
 .../recommender/rules/impl/FlagQueryRule.java      |  13 +-
 .../NoDictionaryOnHeapDictionaryJointRule.java     |   2 +-
 .../rules/impl/PinotTablePartitionRule.java        |   2 +-
 .../rules/io/params/RecommenderConstants.java      |   8 +-
 .../utils/QueryInvertedSortedIndexRecommender.java |   6 +-
 .../util/ConsumingSegmentInfoReader.java           |  48 ++++++
 .../api/ConsumingSegmentInfoReaderTest.java        |  76 ++++++--
 .../controller/recommender/TestConfigEngine.java   |  23 ++-
 .../BloomFilterInputWithDateTimeColumn.json        |  64 +++++++
 .../resources/recommenderInput/FlagQueryInput.json |  15 +-
 .../realtime/HLRealtimeSegmentDataManager.java     |   1 +
 .../realtime/LLRealtimeSegmentDataManager.java     |   1 +
 .../realtime/RealtimeSegmentDataManager.java       |   9 +-
 .../transform/function/BaseTransformFunction.java  |  22 +--
 .../transform/function/CastTransformFunction.java  | 191 +++++++++++++++++++--
 .../pinot/core/transport/AsyncQueryResponse.java   |   2 +-
 .../pinot/core/transport/ServerResponse.java       |   3 +-
 .../function/BaseTransformFunctionTest.java        |  30 ++++
 .../function/CastTransformFunctionTest.java        |  30 +++-
 .../tests/BaseClusterIntegrationTestSet.java       |  13 +-
 .../pinot/plugin/inputformat/avro/AvroUtils.java   |  41 +++--
 .../plugin/inputformat/avro/AvroUtilsTest.java     |  20 ++-
 .../immutable/ImmutableSegmentImpl.java            |  21 ++-
 .../segment/readers/PinotSegmentRecordReader.java  |  12 +-
 .../pinot/segment/local/utils/IngestionUtils.java  |  22 +++
 .../apache/pinot/spi/config/table/TableStatus.java |  70 ++++++++
 .../apache/pinot/spi/utils/CommonConstants.java    |   8 +
 .../java/org/apache/pinot/spi/utils/JsonUtils.java | 159 +++++++++++++++++
 .../org/apache/pinot/spi/utils/JsonUtilsTest.java  |  72 ++++++++
 pinot-spi/src/test/resources/json_util_test.json   |  50 ++++++
 .../pinot/tools/BatchQuickstartWithMinion.java     |  11 +-
 .../org/apache/pinot/tools/HybridQuickstart.java   |  17 +-
 .../org/apache/pinot/tools/JoinQuickStart.java     |  17 +-
 .../apache/pinot/tools/JsonIndexQuickStart.java    |  15 +-
 .../OfflineComplexTypeHandlingQuickStart.java      |  15 +-
 .../org/apache/pinot/tools/QuickStartBase.java     |  17 +-
 .../java/org/apache/pinot/tools/Quickstart.java    |  16 +-
 .../RealtimeComplexTypeHandlingQuickStart.java     |  15 +-
 .../pinot/tools/RealtimeJsonIndexQuickStart.java   |  15 +-
 .../org/apache/pinot/tools/RealtimeQuickStart.java |  16 +-
 .../org/apache/pinot/tools/UpsertQuickStart.java   |  15 +-
 .../pinot/tools/admin/PinotAdministrator.java      |   2 +
 .../admin/command/AvroSchemaToPinotSchema.java     |  17 +-
 ...maToPinotSchema.java => JsonToPinotSchema.java} |  62 ++++---
 .../tools/admin/command/QuickStartCommand.java     |  62 ++++++-
 ...bEvents_offline_complexTypeHandling_schema.json |  50 ++++--
 ...s_offline_complexTypeHandling_table_config.json |   4 -
 ...eHandling_meetupRsvp_realtime_table_config.json |  12 +-
 .../complexTypeHandling_meetupRsvp_schema.json     |  44 +++--
 56 files changed, 1297 insertions(+), 269 deletions(-)
 create mode 100644 pinot-controller/src/test/resources/recommenderInput/BloomFilterInputWithDateTimeColumn.json
 create mode 100644 pinot-spi/src/main/java/org/apache/pinot/spi/config/table/TableStatus.java
 create mode 100644 pinot-spi/src/test/resources/json_util_test.json
 copy pinot-segment-spi/src/main/java/org/apache/pinot/segment/spi/converter/SegmentFormatConverter.java => pinot-tools/src/main/java/org/apache/pinot/tools/QuickStartBase.java (73%)
 copy pinot-tools/src/main/java/org/apache/pinot/tools/admin/command/{AvroSchemaToPinotSchema.java => JsonToPinotSchema.java} (69%)

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