Customize Management Plugin in Kubernetes Cluster #5275
-
I added new API to management plugin to Management plugin port 15672 port through LoadBalancer ingress. When I sending DELETE request to PUBLIC_IP:15672 hit to only one pod. If that pod not include requested connection return not found. I think problem in here [1]. How I execute this DB query on all the nodes ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You need to modify your code so that all nodes are queried. See the following function: A big hint is that the |
Beta Was this translation helpful? Give feedback.
You need to modify your code so that all nodes are queried. See the following function:
https://github.com/NuwanSameera/rabbitmq-server/blob/feature-delete-connection-by-name/deps/rabbit/src/rabbit_connection_tracking.erl#L340-L347
A big hint is that the
Nodes
variable is not used in yourlookup_by_user
function.