Manual cluster setup
This quick start guide will show you how to set up a Pinot cluster manually.
Start Pinot components (scripts or docker images)
Start Pinot Components using docker
Pull docker image
export PINOT_VERSION=0.3.0-SNAPSHOT
export PINOT_IMAGE=apachepinot/pinot:${PINOT_VERSION}
docker pull ${PINOT_IMAGE}0. Create a Network
docker network create -d bridge pinot-demo1. Start Zookeeper
docker run \
--network=pinot-demo \
--name pinot-zookeeper \
--restart always \
-p 2181:2181 \
-d zookeeper:3.5.62. Start Pinot Controller
3. Start Pinot Broker
4. Start Pinot Server
5. Start Kafka
Last updated
Was this helpful?

