kishoreg commented on issue #5580:
URL:
https://github.com/apache/incubator-pinot/issues/5580#issuecomment-645127226
**Proposal**
**Quickstart**
- bin/quickstart-batch.sh
- bin/quickstart-stream.sh
- bin/quickstart-hybrid.sh
**Standalone**
- bin/pinot-admin.sh start-zookeeper <zoo.cfg>
- bin/pinot-admin.sh start-pinot-service <all-in-one.config>
**clustered mode**
- bin/pinot-admin.sh start-zookeeper <zoo.cfg>
- bin/pinot-admin.sh start-pinot-service <controller.config>
- bin/pinot-admin.sh start-pinot-service <broker.config>
- bin/pinot-admin.sh start-pinot-service <server.config>
**Ingest data**
Irrespective of quickstart, standalone or clustered mode, the steps to
ingest data will be the same.
Create Table
```
bin/pinot-admin.sh add-table \
-table-config conf/table.json \
-table-schema conf/schema.json
```
Batch Ingestion
```
bin/pinot-ingestion-job.sh \
-job-spec conf/batch_ingestion_spec.json
```
This will help us restrict the documentation to
- controller.config
- server.config
- broker.config
- table-config.json
- table-schema.json
- ingestion-spec.json
Thoughts?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]