How do we assign a dns name value to the brokers? ...
# getting-started
p
How do we assign a dns name value to the brokers? When I create a go or java client using the zookeeper to get a list of brokers, it returns the kubernetes internal routing name, not the FQN assigned by the ingress.
I guess the ingress broker name is in front of a loadbalancer… What is the best way to query pinot from an external client?
j
Phil you should be able to set an additional property for the Connection i.e. "brokers" e.g.
connectionProperties.setProperty("brokers","DNS:Port");
p
I got around this issue by just passing the loadbalancer endpoint to the client.
👍 1