Hello! I have an instance in which I want to deplo...
# general
r
Hello! I have an instance in which I want to deploy Pinot and other 3 instances where a Zookeeper cluster is deployed. I would like to connect Pinot with this quorum (the 3 Zookeepers servers). How can I set my 3 Zookeeper urls in the Pinot Controller configuration file (controller.zk.str)? Or I'm going in the wrong way? I would like to receive some orientation in order to use Pinot with my 3 Zookeeper servers. Thanks!
m
May be have a load balancer or a vip in front of zk, so pinot only sees one address?
n
btw you can try to set comma separated zk addresses like
zk-1,zk-2,zk-3:2181
in the controller conf
m
Yes that too
r
Thanks a lot!