Stream Ingestion (Kubernetes)
Load streaming data into Pinot on Kubernetes using Kafka
Load data into Pinot using Kafka
Bring up a Kafka cluster for real-time data ingestion
helm repo add kafka https://charts.bitnami.com/bitnami
helm install -n pinot-quickstart kafka kafka/kafka \
--set replicas=1 \
--set kraft.enabled=false \
--set zookeeper.enabled=true \
--set zookeeper.replicaCount=3 \
--set listeners.client.protocol=PLAINTEXTCheck Kafka deployment status
kubectl get all -n pinot-quickstart | grep kafkapod/kafka-controller-0 1/1 Running 0 2m
pod/kafka-controller-1 1/1 Running 0 2m
pod/kafka-controller-2 1/1 Running 0 2mCreate Kafka topics
Load data into Kafka and create Pinot schema/tables
Query with the Pinot Data Explorer
Pinot Data Explorer
Last updated
Was this helpful?

