This is an automated email from the ASF dual-hosted git repository. apucher pushed a change to branch basic-auth-controller in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.
discard 502d846 support blanket protection of controller endpoints discard 816e172 re-use auth token constant discard c52c9db review fixes discard 606c9fa realtime to offline segment integration test with auth discard 92f4a08 add draft realtime integration test harness with auth discard e1b6309 add header support to controller and cluster test tooling discard 351a0f9 added header support to connection factory discard 59cdaee review fixes discard eb4f5ac add batch ingestion test discard ff04de3 review fixes discard 3f65e7d basic auth integration test discard f54a414 integration test fix discard f88a71c manual review fixes discard fd7ac78 dedicated auth quickstart discard 88b47a2 config overrides in starter commands discard 4d719a3 force quickstart broker auth discard 96b9cba make minion task auth augmentation optional discard 94a23e8 auth workflow info discard f6f67c6 rebase fix discard afd9f6d refactor FileUploadDownloadClient discard a198d7a transitioning more calls for auth support discard 6c5ce4f tokens everywhere discard 02e901b progress add 656f279 Extends GroupByCombineOperator and GroupByOrderByCombineOperator from BaseCombineOperator (#6678) add 2731ce7 SegmentWriter and SegmentUploader interface (#6611) add 53c2a3c Adding a check for multi-value column in star tree indexing config (#6641) add d877558 Fixing presto docker build script (#6681) add 5d07ea4 Update links for 0.7.0 release in the website (#6683) add 4ec38f7 Fix bug #6671: RealtimeTableDataManager shuts down SegmentBuildTimeLeaseExtender for all tables in the host (#6682) add 412de43 Query console only view for Cluster Manager (#6665) add 5312879 Fix java 15 in github actions (#6687) add d1cf36a Extends SelectionOrderByCombineOperator from BaseCombineOperator (#6672) add 621ceb0 Fix log message for SegmentBuildTimeLeaseExtender (#6684) add e6c2bdd progress add f070b1b tokens everywhere add d2010ee transitioning more calls for auth support add 41f7dc8 refactor FileUploadDownloadClient add 99aef7b rebase fix add 3a23272 auth workflow info add 0874c2d make minion task auth augmentation optional add 06890a9 force quickstart broker auth add 411694b config overrides in starter commands add 0a28b20 dedicated auth quickstart add 6154e2f manual review fixes add cc83ea3 integration test fix add 0483b6f basic auth integration test add 1abeb93 review fixes add e90cb3c add batch ingestion test add f27f1a6 review fixes add 0f79ecd added header support to connection factory add 1ab0fe6 add header support to controller and cluster test tooling add 250e189 add draft realtime integration test harness with auth add 021ee07 realtime to offline segment integration test with auth add 5b1c38e review fixes add a4372b5 re-use auth token constant add 44cea73 support blanket protection of controller endpoints add 618de28 exclude /auth endpoints from access control 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 (502d846) \ N -- N -- N refs/heads/basic-auth-controller (618de28) 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: .github/workflows/pinot_tests.yml | 2 +- docker/images/pinot-presto/Dockerfile | 7 +- .../api/access/AuthenticationFilter.java | 10 +- pinot-controller/src/main/resources/app/App.tsx | 82 ++++-- .../src/main/resources/app/app_state.ts | 6 +- .../src/main/resources/app/components/Layout.tsx | 7 +- .../main/resources/app/utils/PinotMethodUtils.ts | 10 + .../realtime/LLRealtimeSegmentDataManager.java | 2 +- .../manager/realtime/RealtimeTableDataManager.java | 2 +- .../realtime/SegmentBuildTimeLeaseExtender.java | 63 +++-- .../core/operator/combine/BaseCombineOperator.java | 130 +++++---- .../operator/combine/GroupByCombineOperator.java | 218 +++++++-------- .../combine/GroupByOrderByCombineOperator.java | 236 ++++++++-------- ...xValueBasedSelectionOrderByCombineOperator.java | 297 +++++++++++++++++++++ .../core/operator/combine/MinMaxValueContext.java | 26 +- .../combine/SelectionOrderByCombineOperator.java | 247 ++--------------- .../apache/pinot/core/util/TableConfigUtils.java | 20 +- .../realtime/LLRealtimeSegmentDataManagerTest.java | 37 ++- .../pinot/core/util/TableConfigUtilsTest.java | 11 + .../starter/helix/HelixInstanceDataManager.java | 6 +- .../segment/uploader/SegmentUploader.java} | 33 +-- .../ingestion/segment/writer/SegmentWriter.java | 70 +++++ website/src/pages/download.js | 44 +++ website/src/pages/index.js | 6 +- 24 files changed, 965 insertions(+), 607 deletions(-) copy pinot-broker/src/main/java/org/apache/pinot/broker/api/RequesterIdentity.java => pinot-controller/src/main/resources/app/app_state.ts (90%) create mode 100644 pinot-core/src/main/java/org/apache/pinot/core/operator/combine/MinMaxValueBasedSelectionOrderByCombineOperator.java copy pinot-clients/pinot-java-client/src/main/java/org/apache/pinot/client/PinotClientException.java => pinot-core/src/main/java/org/apache/pinot/core/operator/combine/MinMaxValueContext.java (56%) copy pinot-spi/src/main/java/org/apache/pinot/spi/{stream/StreamPartitionMsgOffsetFactory.java => ingestion/segment/uploader/SegmentUploader.java} (56%) create mode 100644 pinot-spi/src/main/java/org/apache/pinot/spi/ingestion/segment/writer/SegmentWriter.java --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org