-
Notifications
You must be signed in to change notification settings - Fork 526
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
need to add disk IO aware scheduling to avoid the PODs competing for disk IO resource #624
Comments
/remove-kind bug |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
A KEP has been proposed to address this issue. https://github.com/kubernetes-sigs/scheduler-plugins/pull/628 |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle rotten |
/remove-lifecycle rotten |
Area
Other components
No response
What happened?
The current Kubernetes scheduler only supports cpu, memory, and storage aware scheduling. It does not support disk IO resource-aware scheduling. It could happen that the pods scheduled onto a node compete for the disk IO resource, resulting in performance degradation (the noisy neighbor problem). There is an increasing demand for adding disk IO resource-aware scheduling to Kubernetes to avoid or mitigate the noisy neighbor problem.
A disk IO scheduler plugin can be developed to support disk IO resource-aware scheduling. The plugin would check the new pod's requested disk IO BW against each node's real-time available disk IO BW when making the scheduling decision.
What did you expect to happen?
A disk IO scheduler plugin KEP proposal and corresponding implementation
How can we reproduce it (as minimally and precisely as possible)?
No response
Anything else we need to know?
No response
Kubernetes version
Scheduler Plugins version
The text was updated successfully, but these errors were encountered: