Skip to content
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

Tune or disable discovery rate limiting #91

Open
negz opened this issue Jun 30, 2022 · 0 comments
Open

Tune or disable discovery rate limiting #91

negz opened this issue Jun 30, 2022 · 0 comments
Labels
enhancement New feature or request good first issue Good for newcomers needs-epic-link Needs a link to an epic needs-points-label Needs a story points label needs-project Needs to be added to a project board

Comments

@negz
Copy link
Member

negz commented Jun 30, 2022

What problem are you facing?

Like many Kubernetes clients xgql performs 'discovery' - a process via which it walks the API server to determine what APIs it supports. Discovery makes a request per API group, and there are about 350 API groups when the "big three" Crossplane providers are installed with all of their CRDs. xgql's discovery client uses a rate limiter:

func RESTMapper(cfg *rest.Config) (meta.RESTMapper, error) {
dcfg := rest.CopyConfig(cfg)
dcfg.QPS = 20
dcfg.Burst = 100
return apiutil.NewDynamicRESTMapper(dcfg, apiutil.WithLimiter(rate.NewLimiter(rate.Limit(0.05), 1)))

I believe these rate limits are too low (I also can't remember why we have both dcfg values and a rate.NewLimiter). We've been working with upstream Kubernetes to bump most discovery clients to at least 300qps burst, per kubernetes/kubernetes#109141. There's also a compelling school of thought that we should just disable client-side rate limiting altogether and let server-side API Priority and Fairness let clients know when they should back off.

How could Upbound help solve your problem?

I think we should disable rate-limiting on xgql and try out API Priority and Fairness. If I recall correctly this issue is more of a nuisance than a huge blocker on xgql, because it uses a global discovery client (not one per client) and because it only performs discovery once at startup.

@negz negz added enhancement New feature or request needs-project Needs to be added to a project board needs-epic-link Needs a link to an epic needs-points-label Needs a story points label labels Jun 30, 2022
@negz negz added the good first issue Good for newcomers label Aug 31, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers needs-epic-link Needs a link to an epic needs-points-label Needs a story points label needs-project Needs to be added to a project board
Projects
None yet
Development

No branches or pull requests

1 participant