-
Notifications
You must be signed in to change notification settings - Fork 516
Remove Endpoints caching #8396
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Another reason is that |
Sure there's nothing blocking this now and the change should be fairly small. What needs to be included with this is a resource usage comparison of before and after this change. How much memory Kiali uses in a reasonably sized cluster before this change vs. after to show an improvement. |
How we can make this kind of precise measurement of memory usage when only the |
What do you want to improve?
Kiali caches
Endpoints
which change very often in large clusters and can consume a lot of resources. Kiali only uses the endpoints for matching services to pod ips. The pod ips can be gotten from the pod status itself rather than fromEndpoint
s so there's no need to useEndpoint
s.Before/after resource consumption comparison will need to be included with this.
What is the current behavior?
Kiali caches
Endpoint
s.What is the new behavior?
Kiali uses pod status to get pod ips rather than
Endpoint
s.Probably blocked by #8355
The text was updated successfully, but these errors were encountered: