This is an automated email from the ASF dual-hosted git repository.

jlli pushed a change to branch helix-1.0
in repository https://gitbox.apache.org/repos/asf/pinot.git


    omit bc2d0716ba Upgrade Helix to 1.0.2
     add d0f9aaf5b3 fix GcsPinotFs listFiles by using bucket directly (#8656)
     add b4943458a5 [issue-7357] Add support for Avro logical types (#7358)
     add c0056dc278 Allow broker to automatically rewrite expensive function to 
its approximate counterpart (#8655)
     add 8fac50c038 [CI] Reduce quickstart testing to only LTS (#8665)
     add b9bfb8e752 Support ADLS authentication with AAD + proxy (#8654)
     add 497d0517ab Introduce Real Time Native Text Index (#8636)
     add d208f577ed Adding pinot file system command (#8659)
     add abf62f571d fix pruning in expressions by max/min/bloom (#8672)
     add 65cecd259e Randomly pick the first URI for RoundRobinURIProvider 
(#8666)
     add f4c85e9596 Fix the flaky UpsertTableSegmentUploadIntegrationTest 
(#8675)
     add ee19f02fd5 Upgrade Helix to 1.0.2

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   (bc2d0716ba)
            \
             N -- N -- N   refs/heads/helix-1.0 (ee19f02fd5)

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                  |   4 +-
 .../requesthandler/BaseBrokerRequestHandler.java   | 234 +++++++++++++------
 .../requesthandler/DistinctCountRewriteTest.java   |  44 ----
 .../requesthandler/QueryLimitOverrideTest.java     |  50 ----
 .../broker/requesthandler/QueryOverrideTest.java   | 123 ++++++++++
 .../pinot/common/utils/RoundRobinURIProvider.java  |   4 +-
 .../common/utils/RoundRobinURIProviderTest.java    | 151 +++++++------
 .../common/utils/config/TableConfigSerDeTest.java  |   6 +-
 .../org/apache/pinot/core/plan/FilterPlanNode.java |   9 +-
 .../query/pruner/ColumnValueSegmentPruner.java     |  19 +-
 .../query/pruner/ColumnValueSegmentPrunerTest.java |  32 ++-
 .../pinot/integration/tests/ClusterTest.java       | 100 ++++----
 .../tests/OfflineClusterIntegrationTest.java       |  16 +-
 ...TextIndicesRealtimeClusterIntegrationTest.java} |  50 +++-
 .../UpsertTableSegmentUploadIntegrationTest.java   | 218 ++++++++----------
 .../pinot/plugin/filesystem/ADLSGen2PinotFS.java   |  83 +++++--
 .../org/apache/pinot/plugin/filesystem/GcsUri.java |  16 +-
 .../pinot/plugin/filesystem/TestGcsPinotFS.java    |  10 +-
 .../apache/pinot/plugin/filesystem/TestGcsUri.java |  20 +-
 .../inputformat/avro/AvroRecordExtractor.java      |  32 +++
 .../avro/AvroRecordExtractorConfig.java}           |  20 +-
 .../plugin/inputformat/avro/AvroRecordReader.java  |   8 +-
 .../inputformat/avro/AvroRecordReaderConfig.java}  |  19 +-
 .../plugin/inputformat/avro/AvroSchemaUtil.java    |  58 +++++
 .../inputformat/avro/AvroRecordExtractorTest.java  | 143 ++++++++++--
 .../inputformat/avro/AvroSchemaUtilTest.java       |  83 +++++++
 .../inputformat/avro/KafkaAvroMessageDecoder.java  |  10 +-
 .../inputformat/avro/SimpleAvroMessageDecoder.java |  10 +-
 ...aConfluentSchemaRegistryAvroMessageDecoder.java |   5 +-
 .../minion/tasks/SegmentConversionUtils.java       |   2 +-
 .../indexsegment/mutable/MutableSegmentImpl.java   |  25 +-
 .../impl/invertedindex/NativeMutableTextIndex.java | 123 ++++++++++
 .../invertedindex/RealtimeLuceneTextIndex.java     |   2 +-
 .../NativeAndLuceneMutableTextIndexTest.java       | 107 +++++++++
 .../NativeMutableTextIndexConcurrentTest.java      | 251 +++++++++++++++++++++
 .../NativeMutableTextIndexReaderWriterTest.java}   |  44 +---
 .../mutablefst/MutableFSTConcurrentTest.java       |  74 ++++--
 .../apache/pinot/spi/config/table/QueryConfig.java |  23 +-
 .../spi/data/readers/RecordExtractorConfig.java    |   4 +
 .../spi/data/readers/RecordReaderFactory.java      |   6 +-
 .../org/apache/pinot/spi/plugin/PluginManager.java |   1 +
 .../pinot/spi/stream/StreamMessageDecoder.java     |   1 +
 .../apache/pinot/spi/utils/CommonConstants.java    |   5 +
 .../spi/data/readers/RecordReaderFactoryTest.java  |   4 +-
 pinot-tools/pom.xml                                |  10 +
 .../pinot/tools/admin/PinotAdministrator.java      |   2 +
 .../tools/admin/command/FileSystemCommand.java     | 111 +++++++++
 .../tools/admin/command/ImportDataCommand.java     |   5 +-
 .../command/filesystem/BaseFileOperation.java      |  58 +++++
 .../tools/admin/command/filesystem/CopyFiles.java  | 113 ++++++++++
 .../admin/command/filesystem/DeleteFiles.java      |  81 +++++++
 .../tools/admin/command/filesystem/ListFiles.java  |  93 ++++++++
 .../tools/admin/command/filesystem/MoveFiles.java  |  93 ++++++++
 .../tools/admin/command/filesystem/Utils.java      |  26 ++-
 54 files changed, 2244 insertions(+), 597 deletions(-)
 delete mode 100644 
pinot-broker/src/test/java/org/apache/pinot/broker/requesthandler/DistinctCountRewriteTest.java
 delete mode 100644 
pinot-broker/src/test/java/org/apache/pinot/broker/requesthandler/QueryLimitOverrideTest.java
 create mode 100644 
pinot-broker/src/test/java/org/apache/pinot/broker/requesthandler/QueryOverrideTest.java
 rename 
pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/{LuceneRealtimeClusterIntegrationTest.java
 => TextIndicesRealtimeClusterIntegrationTest.java} (75%)
 copy 
pinot-plugins/pinot-input-format/{pinot-thrift/src/main/java/org/apache/pinot/plugin/inputformat/thrift/ThriftRecordExtractorConfig.java
 => 
pinot-avro-base/src/main/java/org/apache/pinot/plugin/inputformat/avro/AvroRecordExtractorConfig.java}
 (62%)
 copy 
pinot-plugins/pinot-input-format/{pinot-protobuf/src/main/java/org/apache/pinot/plugin/inputformat/protobuf/ProtoBufRecordReaderConfig.java
 => 
pinot-avro-base/src/main/java/org/apache/pinot/plugin/inputformat/avro/AvroRecordReaderConfig.java}
 (69%)
 create mode 100644 
pinot-plugins/pinot-input-format/pinot-avro-base/src/test/java/org/apache/pinot/plugin/inputformat/avro/AvroSchemaUtilTest.java
 create mode 100644 
pinot-segment-local/src/main/java/org/apache/pinot/segment/local/realtime/impl/invertedindex/NativeMutableTextIndex.java
 create mode 100644 
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/realtime/impl/invertedindex/NativeAndLuceneMutableTextIndexTest.java
 create mode 100644 
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/realtime/impl/invertedindex/NativeMutableTextIndexConcurrentTest.java
 copy 
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/{segment/index/creator/NativeTextIndexCreatorTest.java
 => realtime/impl/invertedindex/NativeMutableTextIndexReaderWriterTest.java} 
(52%)
 create mode 100644 
pinot-tools/src/main/java/org/apache/pinot/tools/admin/command/FileSystemCommand.java
 create mode 100644 
pinot-tools/src/main/java/org/apache/pinot/tools/admin/command/filesystem/BaseFileOperation.java
 create mode 100644 
pinot-tools/src/main/java/org/apache/pinot/tools/admin/command/filesystem/CopyFiles.java
 create mode 100644 
pinot-tools/src/main/java/org/apache/pinot/tools/admin/command/filesystem/DeleteFiles.java
 create mode 100644 
pinot-tools/src/main/java/org/apache/pinot/tools/admin/command/filesystem/ListFiles.java
 create mode 100644 
pinot-tools/src/main/java/org/apache/pinot/tools/admin/command/filesystem/MoveFiles.java
 copy 
pinot-common/src/main/java/org/apache/pinot/common/utils/fetcher/PinotFSSegmentFetcher.java
 => 
pinot-tools/src/main/java/org/apache/pinot/tools/admin/command/filesystem/Utils.java
 (57%)


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

Reply via email to