jakubmatyszewski commented on issue #10773:
URL: https://github.com/apache/druid/issues/10773#issuecomment-1577435722
If anybody ever encounters this error, here is what was happening in my case:
There were few historicals - `hot`, `cold` and `test`. Each one in their
runtime properties had following line defining server tier:
```
druid.server.tier=historical-hot-spot
```
With values `historical-hot`, `historical-cold-spot` and `historical-test`
respectively.
What was missing was in fact router's `druid.router.tierToBrokerMap`
suggested in comment above by @machine424.
Because I had only one type of broker service I have structured this
property using default broker service name in following way:
```
druid.router.tierToBrokerMap={"_default_tier": "druid/broker",
"historical-cold-spot": "druid/broker", "historical-hot-spot": "druid/broker",
"historical-test": "druid/broker"}
```
After applying this changes errors were gone. :+1:
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]