Hi, I want to access broker debug api. I'm gettin...
# general
o
Hi, I want to access broker debug api. I'm getting response 200(OK) from broker when I send request to the broker
Path("health")
endpoint. But did not any response when I want to access `Path("/debug/routingTable/{tableName}")`endpoint. It returned 500 (internal server error). Also,
Path("/debug/timeBoundary/{tableName}")
endpoint returned 404 not found(that means timeBoundary information not found for the given table). Why I can not get routing table information from broker? I'm working in local with
quick-start-batch
example. https://docs.pinot.apache.org/basics/getting-started/running-pinot-locally version: 0.3.0
k
Copy code
@Path("/routing/{tableName}")
try this
o
I have tried that, this returned `404 not found,`but at least one server to segments mapping must be
k
I think thats happening because of controller and broker running as part of the same jvm process
swagger is registering only the controller end points
Copy code
➜  ~ curl localhost:8000/debug/routingTable/baseballStats_OFFLINE
{"baseballStats_OFFLINE":{"Server_10.1.10.82_7000":["baseballStats_OFFLINE_0"]}}%