This is an automated email from the ASF dual-hosted git repository. apucher pushed a change to branch manual-authorization-annotation in repository https://gitbox.apache.org/repos/asf/pinot.git
discard f67ac4522d controller auth interface cleanup discard d38c84cd02 annotation fix discard 13736c79f9 linter fix discard 5ff57efb8c linter fix discard ee391e918b add @ManualAuthorization annotation for non-standard endpoints add f473bf656e [Refactor] Extract common segment assignment code (#9243) add 6e6e0a4e86 Fix NPE in gap-fill when order-by is not specified (#9250) add e6c2f5bd3b Refactor upsert quickstarts (#9246) add 0a272b2956 Remove currentDataTableVersion from helm value (#9255) add 7af3edbd52 Fix flakiness and cleanup SegmentLineageCleanupTest (#9256) add a5a83aa81b Add more failure info in RealtimeNonReplicaGroupSegmentAssignmentTest.testRelocateCompletedSegments (#9254) add b4f623d5e3 add @ManualAuthorization annotation for non-standard endpoints add 8d6585f6c7 linter fix add 797bc5f213 linter fix add 7357972c10 annotation fix add a569240c35 controller auth interface cleanup 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 (f67ac4522d) \ N -- N -- N refs/heads/manual-authorization-annotation (a569240c35) 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: kubernetes/helm/pinot/values.yaml | 1 - .../assignment/segment/BaseSegmentAssignment.java | 253 +++++++++++++++++++ .../segment/OfflineSegmentAssignment.java | 279 ++++----------------- .../segment/RealtimeSegmentAssignment.java | 257 ++++--------------- ...altimeNonReplicaGroupSegmentAssignmentTest.java | 39 +-- .../core/retention/SegmentLineageCleanupTest.java | 189 +++++--------- .../org/apache/pinot/core/util/GapfillUtils.java | 21 +- .../pinot/tools/PartialUpsertQuickStart.java | 75 +----- .../org/apache/pinot/tools/QuickStartBase.java | 83 +++++- .../apache/pinot/tools/UpsertJsonQuickStart.java | 63 +---- .../org/apache/pinot/tools/UpsertQuickStart.java | 59 +---- .../pinot/tools/streams/RsvpSourceGenerator.java | 6 +- ...eHandling_meetupRsvp_realtime_table_config.json | 42 ---- .../complexTypeHandling_meetupRsvp_schema.json | 63 ----- ...psertJsonMeetupRsvp_realtime_table_config.json} | 4 +- .../upsertJsonMeetupRsvp_schema.json} | 2 +- .../upsertMeetupRsvp_realtime_table_config.json} | 4 +- .../upsertMeetupRsvp_schema.json} | 2 +- ...rtPartialMeetupRsvp_realtime_table_config.json} | 4 +- .../upsertPartialMeetupRsvp_schema.json} | 2 +- 20 files changed, 558 insertions(+), 890 deletions(-) create mode 100644 pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/assignment/segment/BaseSegmentAssignment.java delete mode 100644 pinot-tools/src/main/resources/examples/stream/meetupRsvp/complexTypeHandling_meetupRsvp_realtime_table_config.json delete mode 100644 pinot-tools/src/main/resources/examples/stream/meetupRsvp/complexTypeHandling_meetupRsvp_schema.json rename pinot-tools/src/main/resources/examples/stream/{meetupRsvp/upsert_json_meetupRsvp_realtime_table_config.json => upsertJsonMeetupRsvp/upsertJsonMeetupRsvp_realtime_table_config.json} (95%) rename pinot-tools/src/main/resources/examples/stream/{meetupRsvp/upsert_json_meetupRsvp_schema.json => upsertJsonMeetupRsvp/upsertJsonMeetupRsvp_schema.json} (95%) rename pinot-tools/src/main/resources/examples/stream/{meetupRsvp/upsert_meetupRsvp_realtime_table_config.json => upsertMeetupRsvp/upsertMeetupRsvp_realtime_table_config.json} (94%) rename pinot-tools/src/main/resources/examples/stream/{meetupRsvp/upsert_meetupRsvp_schema.json => upsertMeetupRsvp/upsertMeetupRsvp_schema.json} (97%) rename pinot-tools/src/main/resources/examples/stream/{meetupRsvp/upsert_partial_meetupRsvp_realtime_table_config.json => upsertPartialMeetupRsvp/upsertPartialMeetupRsvp_realtime_table_config.json} (93%) rename pinot-tools/src/main/resources/examples/stream/{meetupRsvp/upsert_partial_meetupRsvp_schema.json => upsertPartialMeetupRsvp/upsertPartialMeetupRsvp_schema.json} (96%) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org