Skip to content

KEP-5229: Add SchedulerAsyncAPICalls feature gate docs #51473

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

Open
wants to merge 1 commit into
base: dev-1.34
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: SchedulerAsyncAPICalls
content_type: feature_gate
_build:
list: never
render: false

stages:
- stage: beta
defaultValue: true
fromVersion: "1.34"
---

Makes all API calls during scheduling asynchronous, by introducing a new kube-scheduler-wide way of handling such calls.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I had to read the KEP to figure out what kind of API this meant. Every Golang library has an API, for example.

Suggested change
Makes all API calls during scheduling asynchronous, by introducing a new kube-scheduler-wide way of handling such calls.
Change the kube-scheduler to make the entire scheduling cycle free of blocking requests to the Kubernetes API server.
Instead, interact with the Kubernetes API using
asynchronous code.