Thanos Receiver Endpoints as seen by Querier #4863
-
Hello 👋 I have deployed Thanos to Kubernetes. When I log into the Querier web UI and view the different Stores, I only see a single Receiver replica, even though I have deployed 3 Receiver replicas. Is this expected? I am pointing the Querier at the Receivers using the following Store address:
Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
It seems more of a Kubernetes question than Thanos but I think Kubernetes services point to load-balancers so in your case as far as I know you get one IP that load-balances to all Thanos Receive instances. You should probably rework your setup so that Query would point to all pods. |
Beta Was this translation helpful? Give feedback.
-
I figured out the solution. When using a Kubernetes service in front of the Receiver pods, you must specify |
Beta Was this translation helpful? Give feedback.
I figured out the solution. When using a Kubernetes service in front of the Receiver pods, you must specify
ClusterIP: 'None'
in order to properly attach the Querier to all Receiver IPs.