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 18:12:52 UTC

[incubator-pinot] branch detect-invalid-columns updated (21fc475 -> 81653d8)

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

jlli pushed a change to branch detect-invalid-columns
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.


 discard 21fc475  Detect invalid column names from BrokerRequestHandler
     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 81653d8  Detect invalid column names from BrokerRequestHandler

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   (21fc475)
            \
             N -- N -- N   refs/heads/detect-invalid-columns (81653d8)

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   |  32 +++-
 .../broker/requesthandler/QueryValidationTest.java |  20 ++-
 ...eption.java => InvalidColumnNameException.java} |   4 +-
 .../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 +++++++++++++++++++--
 .../function/BaseTransformFunctionTest.java        |  30 ++++
 .../function/CastTransformFunctionTest.java        |  30 +++-
 .../tests/BaseClusterIntegrationTestSet.java       |  13 +-
 .../immutable/ImmutableSegmentImpl.java            |  21 ++-
 .../segment/readers/PinotSegmentRecordReader.java  |  12 +-
 .../apache/pinot/spi/config/table/TableStatus.java |  70 ++++++++
 .../apache/pinot/spi/utils/CommonConstants.java    |   8 +
 .../java/org/apache/pinot/spi/utils/JsonUtils.java | 140 +++++++++++++++
 .../org/apache/pinot/spi/utils/JsonUtilsTest.java  |  55 ++++++
 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 +
 ...maToPinotSchema.java => JsonToPinotSchema.java} |  52 ++----
 .../tools/admin/command/QuickStartCommand.java     |  62 ++++++-
 48 files changed, 1129 insertions(+), 220 deletions(-)
 copy pinot-common/src/main/java/org/apache/pinot/common/exception/{InvalidConfigException.java => InvalidColumnNameException.java} (88%)
 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