You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently loggo uses simple List() method to retrieve k8s Services for every namespace. This is very inefficient and causes noticeable load spikes on both kube-apiserver and etcd.
Instead, loggo should use some kind of "list-then-watch" logic, for example through the standard k8s.io/client-go/cache package.
The text was updated successfully, but these errors were encountered:
Currently loggo uses simple
List()
method to retrieve k8s Services for every namespace. This is very inefficient and causes noticeable load spikes on both kube-apiserver and etcd.Instead, loggo should use some kind of "list-then-watch" logic, for example through the standard
k8s.io/client-go/cache
package.The text was updated successfully, but these errors were encountered: