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 83c939b  generate larger realtime to offline segments in test
 discard fb5e977  always allow public paths
 discard f9919d4  unit test implicity endpoint protection
 discard dee83b9  exclude /auth endpoints from access control
 discard 10340df  support blanket protection of controller endpoints
 discard 9f72cf5  re-use auth token constant
 discard 5eddb3a  review fixes
 discard 6b7c874  realtime to offline segment integration test with auth
 discard 40d3781  add draft realtime integration test harness with auth
 discard 4d8c124  add header support to controller and cluster test tooling
 discard 3039822  added header support to connection factory
 discard 25abe0e  review fixes
 discard 50e185d  add batch ingestion test
 discard bec4d79  review fixes
 discard 21cd834  basic auth integration test
 discard 025c51a  integration test fix
 discard 3818a94  manual review fixes
 discard 058cdf2  dedicated auth quickstart
 discard 2ecbff1  config overrides in starter commands
 discard 9f6c6fd  force quickstart broker auth
 discard 366e062  make minion task auth augmentation optional
 discard 52d8bfd  auth workflow info
 discard a51eeb2  rebase fix
 discard 73dbc49  refactor FileUploadDownloadClient
 discard 2788cf6  transitioning more calls for auth support
 discard 45f13ce  tokens everywhere
 discard a17ff9c  progress
     add 9275a43  Support data ingestion for offline segment in one pass (#6479)
     add b48dac0  Fix log message in ControllerPeriodicTask (#6709)
     add 8f53b9d  Set thread cpu time in setExecutionStatistics() (#6711)
     add e9670d0  progress
     add 7b9bc8f  tokens everywhere
     add dc4440b  transitioning more calls for auth support
     add 05dad3f  refactor FileUploadDownloadClient
     add 417aa22  rebase fix
     add e190845  auth workflow info
     add 16cb14d  make minion task auth augmentation optional
     add 64299dd  force quickstart broker auth
     add 0cda99d  config overrides in starter commands
     add 08ff76c  dedicated auth quickstart
     add ba4cf13  manual review fixes
     add 26970d1  integration test fix
     add df98b54  basic auth integration test
     add 0dcc83c  review fixes
     add b3ff6d7  add batch ingestion test
     add ba02194  review fixes
     add 5b71e02  added header support to connection factory
     add 37cb248  add header support to controller and cluster test tooling
     add 4831c04  add draft realtime integration test harness with auth
     add 7b98aa9  realtime to offline segment integration test with auth
     add e0361d7  review fixes
     add 646bbb9  re-use auth token constant
     add 32222da  support blanket protection of controller endpoints
     add 820ed37  exclude /auth endpoints from access control
     add 9ff5be2  unit test implicity endpoint protection
     add c768865  always allow public paths
     add 8c07ff8  generate larger realtime to offline segments in test
     add 362b126  review 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   (83c939b)
            \
             N -- N -- N   refs/heads/basic-auth-controller (362b126)

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:
 .../utils/fetcher/SegmentFetcherFactory.java       |   8 +-
 .../controller/api/access/AccessControlUtils.java  |  40 ++-
 .../core/periodictask/ControllerPeriodicTask.java  |   2 +-
 .../readers/IntermediateSegmentRecordReader.java   |  42 ++-
 .../indexsegment/mutable/IntermediateSegment.java  | 377 +++++++++++++++++++++
 .../RealtimeIndexOffHeapMemoryManager.java         |   8 +-
 .../core/operator/InstanceResponseOperator.java    |   2 +-
 .../operator/blocks/IntermediateResultsBlock.java  |  13 +-
 .../core/operator/combine/BaseCombineOperator.java |   8 +-
 .../operator/combine/CombineOperatorUtils.java     |   4 +-
 .../combine/SelectionOnlyCombineOperator.java      |   2 +-
 ...tatistics.java => MutableColumnStatistics.java} |   4 +-
 ....java => MutableNoDictionaryColStatistics.java} |   4 +-
 .../stats/RealtimeSegmentStatsContainer.java       |   4 +-
 ...termediateSegmentSegmentCreationDataSource.java |  54 +++
 .../creator/IntermediateSegmentStatsContainer.java |  52 +++
 .../creator/impl/SegmentColumnarIndexCreator.java  |   2 +-
 .../impl/SegmentIndexCreationDriverImpl.java       |  13 +-
 .../core/segment/creator/impl/V1Constants.java     |   2 +-
 .../index/column/IntermediateIndexContainer.java   | 134 ++++++++
 .../core/segment/index/column/NumValuesInfo.java   |  29 +-
 .../segment/index/loader/IndexLoadingConfig.java   |   3 +
 .../segment/index/metadata/ColumnMetadata.java     |   2 +-
 .../core/indexsegment/IntermediateSegmentTest.java | 220 ++++++++++++
 24 files changed, 933 insertions(+), 96 deletions(-)
 copy 
pinot-plugins/pinot-input-format/pinot-avro-base/src/main/java/org/apache/pinot/plugin/inputformat/avro/AvroRecordReader.java
 => 
pinot-core/src/main/java/org/apache/pinot/core/data/readers/IntermediateSegmentRecordReader.java
 (64%)
 create mode 100644 
pinot-core/src/main/java/org/apache/pinot/core/indexsegment/mutable/IntermediateSegment.java
 rename 
pinot-core/src/main/java/org/apache/pinot/core/realtime/converter/stats/{RealtimeColumnStatistics.java
 => MutableColumnStatistics.java} (97%)
 rename 
pinot-core/src/main/java/org/apache/pinot/core/realtime/converter/stats/{RealtimeNoDictionaryColStatistics.java
 => MutableNoDictionaryColStatistics.java} (95%)
 create mode 100644 
pinot-core/src/main/java/org/apache/pinot/core/segment/creator/IntermediateSegmentSegmentCreationDataSource.java
 create mode 100644 
pinot-core/src/main/java/org/apache/pinot/core/segment/creator/IntermediateSegmentStatsContainer.java
 create mode 100644 
pinot-core/src/main/java/org/apache/pinot/core/segment/index/column/IntermediateIndexContainer.java
 copy 
pinot-common/src/main/java/org/apache/pinot/pql/parsers/pql2/ast/IntegerLiteralAstNode.java
 => 
pinot-core/src/main/java/org/apache/pinot/core/segment/index/column/NumValuesInfo.java
 (61%)
 create mode 100644 
pinot-core/src/test/java/org/apache/pinot/core/indexsegment/IntermediateSegmentTest.java

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to