hnakamor commented on issue #15431:
URL: https://github.com/apache/druid/issues/15431#issuecomment-2043009538
Hi @twij2332 ,
First, you need to use Druid 29.0.0 or higher.
My configuration was as follows.
- common.runtime.properties
```
# Extensions
druid.extensions.loadList=["druid-datasketches","mysql-metadata-storage","druid-s3-extensions","druid-kafka-indexing-service","druid-bloom-filter","druid-multi-stage-query","prometheus-emitter","druid-kubernetes-extensions"]
# Zookeeper less
druid.zk.service.enabled=false
druid.serverview.type=http
druid.coordinator.loadqueuepeon.type=http
druid.indexer.runner.type=httpRemote
druid.discovery.type=k8s
druid.discovery.k8s.clusterIdentifier=${env:POD_NAMESPACE}
```
- Overlord(Coordinator)'s runtime.properties
```
# Extensions
druid.extensions.loadList=["druid-datasketches","mysql-metadata-storage","druid-s3-extensions","druid-kafka-indexing-service","druid-bloom-filter","druid-multi-stage-query","prometheus-emitter","druid-kubernetes-extensions","druid-kubernetes-overlord-extensions"]
# MM less
druid.indexer.runner.type=k8sAndWorker
druid.indexer.runner.namespace=${env:POD_NAMESPACE}
druid.indexer.task.encapsulatedTask=true
druid.indexer.runner.k8sAndWorker.runnerStrategy.type=taskType
druid.indexer.runner.k8sAndWorker.runnerStrategy.taskType.default=k8s
druid.indexer.runner.k8sAndWorker.runnerStrategy.taskType.overrides={"index_kafka":
"worker"}
```
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]