Hello everybody I have three servers where I want ...
# troubleshooting
d
Hello everybody I have three servers where I want to put Zookeeper cluster and the other Pinot components. I wonder how can I create a single entry address/port to let other components connect to zookeeper using the same address and port. I did a similar thing for brokers, I set up a load balancer to always call the same address and port without knowing the ip of each broker. But I do not know setting a load balancer for zookeeper seems unnecessary.
x
Are you using k8s?
d
No @Xiang Fu
I am not using k8s
x
for zk access, is it only used by pinot?
typically you should be able to add a dns record in your environment, e.g. CNAME
It will handle the lookup from CNAME to the hosts behind
also you can try comma separated zk address
like
zk-1,zk-2,zk3:2181
d
Yeah @Xiang Fu I am using zk for Pinot only