This is an automated email from the ASF dual-hosted git repository. apucher pushed a change to branch pinot-flexible-auth-provider in repository https://gitbox.apache.org/repos/asf/pinot.git
discard e700acc841 more test fixes discard 9689b64877 pinot dynamic auth provider add d06338acb8 avoid putting null into segment download uri (#8693) add 3983728e64 make exclusive bounds exclusive (#8703) add 078d8969bf Reduce wait time for pulsar tests (#8702) add d3c97d54d2 Add Pulsar plugin back to distribution (#8657) add f90137b1d5 rationalise Pair types (#8709) add e4a8e6ed60 throw when integer overflow occurs (#8710) add e788a0afc6 Fix when there're two index filter operator h3 inclusion index throw exception (#8707) add 159afb7820 Cleanup segment upload logic and allow validation on real-time table (#8695) add 7548b67592 CSV Realtime Decoder (#8658) add 70f505f028 Bugfixing, don't remove timestmap index during server restart. (#8705) add 09bae15030 Scalable Gapfill Implementation for Avg/Count/Sum (#8647) add d62438c36c [Minor] Make warning log more explicit for segment upload (#8715) add b8af790c2f Enable uploading segments to realtime tables (#8584) add 6390a40eb9 pinot dynamic auth provider add 1b0a2da559 more test fixes 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 (e700acc841) \ N -- N -- N refs/heads/pinot-flexible-auth-provider (1b0a2da559) 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: .../java/org/apache/pinot/common/utils/Pair.java | 49 -- .../apache/pinot/common/utils/SegmentUtils.java | 32 +- .../org/apache/pinot/common/utils/URIUtils.java | 14 +- .../PinotSegmentUploadDownloadRestletResource.java | 268 +++---- .../api/upload/SegmentValidationUtils.java | 94 +++ .../controller/api/upload/SegmentValidator.java | 122 --- .../pinot/controller/api/upload/ZKOperator.java | 116 ++- .../helix/core/PinotHelixResourceManager.java | 60 +- .../segment/RealtimeSegmentAssignment.java | 50 +- .../realtime/PinotLLCRealtimeSegmentManager.java | 16 +- .../core/realtime/PinotRealtimeSegmentManager.java | 10 +- .../helix/core/util/ZKMetadataUtils.java | 12 +- .../controller/api/upload/ZKOperatorTest.java | 40 +- ...altimeNonReplicaGroupSegmentAssignmentTest.java | 114 ++- ...NonReplicaGroupTieredSegmentAssignmentTest.java | 5 +- .../RealtimeReplicaGroupSegmentAssignmentTest.java | 132 +++- .../helix/core/realtime/SegmentCompletionTest.java | 10 +- .../core/data/manager/BaseTableDataManager.java | 15 +- .../manager/offline/OfflineTableDataManager.java | 12 - .../manager/offline/TableDataManagerProvider.java | 2 +- .../manager/realtime/RealtimeTableDataManager.java | 5 +- .../core/operator/filter/FilterOperatorUtils.java | 3 +- .../filter/H3InclusionIndexFilterOperator.java | 52 +- .../predicate/RangePredicateEvaluatorFactory.java | 16 +- .../statement/JsonStatementOptimizer.java | 20 +- .../core/query/reduce/BaseGapfillProcessor.java | 229 ++++++ .../core/query/reduce/BrokerReduceService.java | 7 +- .../core/query/reduce/CountGapfillProcessor.java | 131 ++++ .../pinot/core/query/reduce/GapfillProcessor.java | 138 +--- .../core/query/reduce/GapfillProcessorFactory.java | 65 ++ .../core/query/reduce/SumAvgGapfillProcessor.java | 212 ++++++ .../server/realtime/ControllerLeaderLocator.java | 6 +- .../ServerSegmentCompletionProtocolHandler.java | 8 +- .../queries/GapfillQueriesScalabilityTest.java | 822 +++++++++++++++++++++ .../apache/pinot/queries/GapfillQueriesTest.java | 1 + .../apache/pinot/queries/H3IndexQueriesTest.java | 28 + .../queries/JsonIngestionFromAvroQueriesTest.java | 10 +- .../org/apache/pinot/queries/RangeQueriesTest.java | 72 +- .../realtime/ControllerLeaderLocatorTest.java | 30 +- pinot-distribution/pinot-assembly.xml | 2 - .../tests/LLCRealtimeClusterIntegrationTest.java | 96 ++- .../tests/RealtimeClusterIntegrationTest.java | 16 +- .../ControllerLeaderLocatorIntegrationTest.java | 8 +- .../plugin/inputformat/csv/CSVMessageDecoder.java | 146 ++++ .../inputformat/csv/CSVMessageDecoderTest.java | 157 ++++ .../plugin/stream/pulsar/PulsarConsumerTest.java | 4 +- .../local/data/manager/TableDataManager.java | 2 +- .../writer/impl/BaseChunkSVForwardIndexWriter.java | 1 + .../creator/impl/inv/RangeIndexCreator.java | 18 +- .../segment/local/utils/SegmentPushUtils.java | 2 +- .../forward/VarByteChunkSVForwardIndexTest.java | 24 + .../starter/helix/HelixInstanceDataManager.java | 2 +- .../main/java/org/apache/pinot/spi/utils/Pair.java | 73 -- .../data/readers/AbstractRecordExtractorTest.java | 12 +- 54 files changed, 2706 insertions(+), 885 deletions(-) delete mode 100644 pinot-common/src/main/java/org/apache/pinot/common/utils/Pair.java create mode 100644 pinot-controller/src/main/java/org/apache/pinot/controller/api/upload/SegmentValidationUtils.java delete mode 100644 pinot-controller/src/main/java/org/apache/pinot/controller/api/upload/SegmentValidator.java create mode 100644 pinot-core/src/main/java/org/apache/pinot/core/query/reduce/BaseGapfillProcessor.java create mode 100644 pinot-core/src/main/java/org/apache/pinot/core/query/reduce/CountGapfillProcessor.java create mode 100644 pinot-core/src/main/java/org/apache/pinot/core/query/reduce/GapfillProcessorFactory.java create mode 100644 pinot-core/src/main/java/org/apache/pinot/core/query/reduce/SumAvgGapfillProcessor.java create mode 100644 pinot-core/src/test/java/org/apache/pinot/queries/GapfillQueriesScalabilityTest.java create mode 100644 pinot-plugins/pinot-input-format/pinot-csv/src/main/java/org/apache/pinot/plugin/inputformat/csv/CSVMessageDecoder.java create mode 100644 pinot-plugins/pinot-input-format/pinot-csv/src/test/java/org/apache/pinot/plugin/inputformat/csv/CSVMessageDecoderTest.java delete mode 100644 pinot-spi/src/main/java/org/apache/pinot/spi/utils/Pair.java --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org