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

xiangfu pushed a change to branch adding_InsertData_sub_command
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.


 discard 6905653  Adding ImportData sub command for pinot-admin
     add 13bd443  Fix remaining links to outdated helm chart repos. (#6394)
     add 93a4515  Adding Pinot minion segment generation and push task. (#6340)
     add 19101e9  Make required interfaces or classes serializable for spark 
(#6384)
     add 37f2e28  Segment reset API (#6336)
     add f924f2f  Adding ImportData sub command for pinot-admin

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   (6905653)
            \
             N -- N -- N   refs/heads/adding_InsertData_sub_command (f924f2f)

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/scripts/.pinot_quickstart.sh     |  27 ++
 kubernetes/helm/index.yaml                         |   6 +-
 kubernetes/helm/pinot/README.md                    |   4 +-
 kubernetes/helm/pinot/requirements.lock            |   2 +-
 kubernetes/helm/pinot/requirements.yaml            |   2 +-
 kubernetes/helm/thirdeye/Chart.lock                |   6 +-
 kubernetes/helm/thirdeye/Chart.yaml                |   3 +-
 .../apache/pinot/common/minion/MinionClient.java   |   2 +-
 .../api/resources/PinotSegmentRestletResource.java |  65 ++++-
 .../helix/core/PinotHelixResourceManager.java      | 155 ++++++++++
 .../SegmentGenerationAndPushTaskGenerator.java     | 315 +++++++++++++++++++++
 .../minion/generator/TaskGeneratorRegistry.java    |   1 +
 .../pinot/controller/util/FileIngestionUtils.java  |   2 +-
 .../apache/pinot/core/common/MinionConstants.java  |   6 +
 .../core/data/partition/PartitionFunction.java     |   5 +-
 .../data/recordtransformer/RecordTransformer.java  |   3 +-
 .../generator/SegmentGeneratorConfig.java          |   3 +-
 .../segment/creator/ColumnIndexCreationInfo.java   |   3 +-
 .../core/segment/creator/ColumnStatistics.java     |   3 +-
 .../segment/creator/SegmentCreationDataSource.java |   3 +-
 .../pinot/core/segment/creator/SegmentCreator.java |   3 +-
 .../creator/SegmentIndexCreationDriver.java        |   3 +-
 .../segment/creator/SegmentIndexCreationInfo.java  |   5 +-
 .../creator/SegmentPreIndexStatsContainer.java     |   5 +-
 .../pinot/core/segment/memory/PinotByteBuffer.java |  15 +-
 .../core/segment/name/SegmentNameGenerator.java    |   3 +-
 .../tests/AdminConsoleIntegrationTest.java         |  13 +
 pinot-minion/pom.xml                               |   5 +
 ...lt.java => SegmentGenerationAndPushResult.java} |  55 ++--
 .../SegmentGenerationAndPushTaskExecutor.java      | 306 ++++++++++++++++++++
 ...gmentGenerationAndPushTaskExecutorFactory.java} |   5 +-
 .../executor/TaskExecutorFactoryRegistry.java      |   1 +
 .../v0_deprecated/pinot-spark/pom.xml              | 282 +++++++++++++++++-
 .../src/test/java/SegmentCreationSparkTest.java    | 141 +++++++++
 .../src/test/resources}/test_sample_data.csv       |   0
 .../apache/pinot/spi/config/BaseJsonConfig.java    |   3 +-
 .../java/org/apache/pinot/spi/data/FieldSpec.java  |   3 +-
 .../pinot/spi/data/IngestionSchemaValidator.java   |   4 +-
 .../java/org/apache/pinot/spi/data/Schema.java     |   5 +-
 .../apache/pinot/spi/data/TimeGranularitySpec.java |   5 +-
 .../apache/pinot/spi/data/readers/GenericRow.java  |   3 +-
 .../pinot/spi/data/readers/RecordExtractor.java    |   3 +-
 .../pinot/spi/data/readers/RecordReader.java       |   3 +-
 .../spi/ingestion/batch/BatchConfigProperties.java |   1 -
 .../org/apache/pinot/spi/plugin/PluginManager.java |  44 +++
 .../pinot/spi/utils/IngestionConfigUtils.java      |   8 +-
 pinot-tools/pom.xml                                |  11 +
 .../pinot/tools/BatchQuickstartWithMinion.java     |  18 +-
 .../org/apache/pinot/tools/BootstrapTableTool.java | 132 +++++++--
 .../java/org/apache/pinot/tools/Quickstart.java    |  17 +-
 .../tools/admin/command/QuickStartCommand.java     |   7 +
 .../tools/admin/command/QuickstartRunner.java      |  21 ++
 .../tools/admin/command/StartMinionCommand.java    |  20 ++
 .../airlineStats_offline_table_config.json         |  44 +++
 .../batch}/airlineStats/airlineStats_schema.json   |   0
 .../baseballStats_offline_table_config.json        |  43 +++
 .../batch/baseballStats/baseballStats_schema.json  |   0
 .../baseballStats/rawdata/baseballStats_data.csv   |   0
 pom.xml                                            |   2 +-
 .../installation/cloud/on-premise.md               |   4 +-
 60 files changed, 1740 insertions(+), 119 deletions(-)
 create mode 100644 
pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/minion/generator/SegmentGenerationAndPushTaskGenerator.java
 copy 
pinot-minion/src/main/java/org/apache/pinot/minion/executor/{SegmentConversionResult.java
 => SegmentGenerationAndPushResult.java} (64%)
 create mode 100644 
pinot-minion/src/main/java/org/apache/pinot/minion/executor/SegmentGenerationAndPushTaskExecutor.java
 copy 
pinot-minion/src/main/java/org/apache/pinot/minion/executor/{ConvertToRawIndexTaskExecutorFactory.java
 => SegmentGenerationAndPushTaskExecutorFactory.java} (85%)
 create mode 100644 
pinot-plugins/pinot-batch-ingestion/v0_deprecated/pinot-spark/src/test/java/SegmentCreationSparkTest.java
 copy {pinot-core/src/test/resources/data => 
pinot-plugins/pinot-batch-ingestion/v0_deprecated/pinot-spark/src/test/resources}/test_sample_data.csv
 (100%)
 copy 
pinot-common/src/main/java/org/apache/pinot/common/utils/fetcher/PinotFSSegmentFetcher.java
 => 
pinot-tools/src/main/java/org/apache/pinot/tools/BatchQuickstartWithMinion.java 
(70%)
 create mode 100644 
pinot-tools/src/main/resources/examples/minions/batch/airlineStats/airlineStats_offline_table_config.json
 copy pinot-tools/src/main/resources/examples/{stream => 
minions/batch}/airlineStats/airlineStats_schema.json (100%)
 create mode 100644 
pinot-tools/src/main/resources/examples/minions/batch/baseballStats/baseballStats_offline_table_config.json
 copy pinot-tools/src/main/resources/examples/{ => 
minions}/batch/baseballStats/baseballStats_schema.json (100%)
 copy pinot-tools/src/main/resources/examples/{ => 
minions}/batch/baseballStats/rawdata/baseballStats_data.csv (100%)


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

Reply via email to