You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by ap...@apache.org on 2021/03/23 22:49:43 UTC

[incubator-pinot] branch basic-auth-controller updated (c0c9563 -> 83c939b)

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 c0c9563  generate larger realtime to offline segments in test
 discard e4f9b8e  always allow public paths
 discard 0661f4e  unit test implicity endpoint protection
 discard 52186a1  exclude /auth endpoints from access control
 discard f492d1e  support blanket protection of controller endpoints
 discard 0e9e2c8  re-use auth token constant
 discard 5f697e6  review fixes
 discard e6ff6a3  realtime to offline segment integration test with auth
 discard 84de896  add draft realtime integration test harness with auth
 discard f953b9e  add header support to controller and cluster test tooling
 discard 8835165  added header support to connection factory
 discard f50d47e  review fixes
 discard 5e9dd94  add batch ingestion test
 discard ea8e088  review fixes
 discard 2f6efac  basic auth integration test
 discard 9690a0a  integration test fix
 discard 3416002  manual review fixes
 discard 5dcb7ac  dedicated auth quickstart
 discard 974ea1a  config overrides in starter commands
 discard 65ec49b  force quickstart broker auth
 discard 5b53411  make minion task auth augmentation optional
 discard c368e77  auth workflow info
 discard 798fb72  rebase fix
 discard c5c3a93  refactor FileUploadDownloadClient
 discard 6959205  transitioning more calls for auth support
 discard a088e45  tokens everywhere
 discard 8134967  progress
     add 3c055f3  Create shaded jar for pinot-core module (#6697)
     add 593d237  Fix link to superset example manifest (#6705)
     add 27b61fe6 Extract more common logic in combine operators (#6696)
     add 5d2bc0c  Fix the default map return value in DictionaryBasedGroupKeyGenerator (#6712)
     add a17ff9c  progress
     add 45f13ce  tokens everywhere
     add 2788cf6  transitioning more calls for auth support
     add 73dbc49  refactor FileUploadDownloadClient
     add a51eeb2  rebase fix
     add 52d8bfd  auth workflow info
     add 366e062  make minion task auth augmentation optional
     add 9f6c6fd  force quickstart broker auth
     add 2ecbff1  config overrides in starter commands
     add 058cdf2  dedicated auth quickstart
     add 3818a94  manual review fixes
     add 025c51a  integration test fix
     add 21cd834  basic auth integration test
     add bec4d79  review fixes
     add 50e185d  add batch ingestion test
     add 25abe0e  review fixes
     add 3039822  added header support to connection factory
     add 4d8c124  add header support to controller and cluster test tooling
     add 40d3781  add draft realtime integration test harness with auth
     add 6b7c874  realtime to offline segment integration test with auth
     add 5eddb3a  review fixes
     add 9f72cf5  re-use auth token constant
     add 10340df  support blanket protection of controller endpoints
     add dee83b9  exclude /auth endpoints from access control
     add f9919d4  unit test implicity endpoint protection
     add fb5e977  always allow public paths
     add 83c939b  generate larger realtime to offline segments in test

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   (c0c9563)
            \
             N -- N -- N   refs/heads/basic-auth-controller (83c939b)

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:
 docker/images/pinot-superset/README.md             |   2 +-
 pinot-common/pom.xml                               |   4 +
 pinot-core/pom.xml                                 |  35 +++
 .../core/operator/combine/BaseCombineOperator.java | 197 +++++++-------
 .../operator/combine/GroupByCombineOperator.java   | 102 +++----
 .../combine/GroupByOrderByCombineOperator.java     |  87 ++----
 ...xValueBasedSelectionOrderByCombineOperator.java | 292 +++++++++++----------
 .../core/operator/combine/MinMaxValueContext.java  |  36 ---
 .../combine/SelectionOrderByCombineOperator.java   |  72 +----
 .../StreamingSelectionOnlyCombineOperator.java     | 176 +++++--------
 .../groupby/DictionaryBasedGroupKeyGenerator.java  |  22 +-
 .../DefaultAggregationExecutorTest.java            |   4 +-
 .../DoubleAggregationResultHolderTest.java         |   4 +-
 .../AggregationGroupByTrimmingServiceTest.java     |   4 +-
 .../DictionaryBasedGroupKeyGeneratorTest.java      |  17 +-
 .../groupby/DoubleGroupByResultHolderTest.java     |   4 +-
 .../groupby/NoDictionaryGroupKeyGeneratorTest.java |   5 +-
 .../aggregation/groupby/StringGroupKeyTest.java    |   3 +-
 .../query/executor/QueryExecutorTest.java          |  19 +-
 .../selection/SelectionOperatorServiceTest.java    |   4 +-
 20 files changed, 474 insertions(+), 615 deletions(-)
 delete mode 100644 pinot-core/src/main/java/org/apache/pinot/core/operator/combine/MinMaxValueContext.java
 rename pinot-core/src/test/java/org/apache/pinot/{ => core}/query/aggregation/DefaultAggregationExecutorTest.java (98%)
 rename pinot-core/src/test/java/org/apache/pinot/{ => core}/query/aggregation/DoubleAggregationResultHolderTest.java (91%)
 rename pinot-core/src/test/java/org/apache/pinot/{ => core}/query/aggregation/groupby/AggregationGroupByTrimmingServiceTest.java (96%)
 rename pinot-core/src/test/java/org/apache/pinot/{ => core}/query/aggregation/groupby/DictionaryBasedGroupKeyGeneratorTest.java (96%)
 rename pinot-core/src/test/java/org/apache/pinot/{ => core}/query/aggregation/groupby/DoubleGroupByResultHolderTest.java (94%)
 rename pinot-core/src/test/java/org/apache/pinot/{ => core}/query/aggregation/groupby/NoDictionaryGroupKeyGeneratorTest.java (97%)
 rename pinot-core/src/test/java/org/apache/pinot/{ => core}/query/aggregation/groupby/StringGroupKeyTest.java (94%)
 rename pinot-core/src/test/java/org/apache/pinot/{ => core}/query/executor/QueryExecutorTest.java (95%)
 rename pinot-core/src/test/java/org/apache/pinot/{ => core}/query/selection/SelectionOperatorServiceTest.java (98%)

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