I was trying to get a separate dev Pinot instance ...
# troubleshooting
d
I was trying to get a separate dev Pinot instance running that my local jobs can use. If I try to get a local Presto to hit a remote Pinot (using a service address), I get an exception that looks like Presto is getting passed the pinot-broker's k8 address. I'm guessing the controller is returning the k8 address to Presto. What's a good way around this?
Copy code
Query 20200524_182130_00003_5izra failed: <http://java.net|java.net>.UnknownHostException: pinot-broker-0.pinot-broker-headless.pinot-metrics-dev.svc.cluster.local: Name or service not known
x
k8s internal has its’ own dns resolution. If you want to local presto instance not in k8s, then you can try to 1. port forwarding pinot-controller/broker/server to local port. 2. Change your local dns resolution to map the k8s internal host names to localhost
d
Cool, I'll try that. Thanks!