mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 19:56:01 +00:00
Add SchedulerPopFromBackoffQ feature gate for KEP-5142
This commit is contained in:
parent
af3b4cd57a
commit
8d4eaa024d
@ -632,6 +632,13 @@ const (
|
||||
// which improves the scheduling latency when the preemption involves in.
|
||||
SchedulerAsyncPreemption featuregate.Feature = "SchedulerAsyncPreemption"
|
||||
|
||||
// owner: @macsko
|
||||
// kep: http://kep.k8s.io/5142
|
||||
//
|
||||
// Improves scheduling queue behavior by popping pods from the backoffQ when the activeQ is empty.
|
||||
// This allows to process potentially schedulable pods ASAP, eliminating a penalty effect of the backoff queue.
|
||||
SchedulerPopFromBackoffQ featuregate.Feature = "SchedulerPopFromBackoffQ"
|
||||
|
||||
// owner: @atosatto @yuanchen8911
|
||||
// kep: http://kep.k8s.io/3902
|
||||
//
|
||||
|
@ -660,6 +660,10 @@ var defaultVersionedKubernetesFeatureGates = map[featuregate.Feature]featuregate
|
||||
{Version: version.MustParse("1.32"), Default: false, PreRelease: featuregate.Alpha},
|
||||
},
|
||||
|
||||
SchedulerPopFromBackoffQ: {
|
||||
{Version: version.MustParse("1.33"), Default: true, PreRelease: featuregate.Beta},
|
||||
},
|
||||
|
||||
SchedulerQueueingHints: {
|
||||
{Version: version.MustParse("1.28"), Default: false, PreRelease: featuregate.Beta},
|
||||
{Version: version.MustParse("1.32"), Default: true, PreRelease: featuregate.Beta},
|
||||
|
@ -1149,6 +1149,12 @@
|
||||
lockToDefault: false
|
||||
preRelease: Alpha
|
||||
version: "1.32"
|
||||
- name: SchedulerPopFromBackoffQ
|
||||
versionedSpecs:
|
||||
- default: true
|
||||
lockToDefault: false
|
||||
preRelease: Beta
|
||||
version: "1.33"
|
||||
- name: SchedulerQueueingHints
|
||||
versionedSpecs:
|
||||
- default: false
|
||||
|
Loading…
Reference in New Issue
Block a user