Skip to content

Commit e2c0fe1

Browse files
committed
KEP-4247: Graduate SchedulerQueueingHints feature to GA
1 parent 48f8ce3 commit e2c0fe1

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

content/en/docs/concepts/scheduling-eviction/scheduling-framework.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -74,21 +74,14 @@ Plugins that implement PreEnqueue, PreFilter, Filter, Reserve or Permit should i
7474

7575
### QueueingHint
7676

77-
{{< feature-state for_k8s_version="v1.32" state="beta" >}}
77+
{{< feature-state feature_gate_name="SchedulerQueueingHints" >}}
7878

7979
QueueingHint is a callback function for deciding whether a Pod can be requeued to the active queue or backoff queue.
8080
It's executed every time a certain kind of event or change happens in the cluster.
8181
When the QueueingHint finds that the event might make the Pod schedulable,
8282
the Pod is put into the active queue or the backoff queue
8383
so that the scheduler will retry the scheduling of the Pod.
8484

85-
{{< note >}}
86-
QueueingHint evaluation during scheduling is a beta-level feature.
87-
In Kubernetes {{< skew currentVersion >}}, this feature gate is enabled by default,
88-
and you can disable it via the
89-
`SchedulerQueueingHints` [feature gate](/docs/reference/command-line-tools-reference/feature-gates/).
90-
{{< /note >}}
91-
9285
### QueueSort {#queue-sort}
9386

9487
These plugins are used to sort Pods in the scheduling queue. A queue sort plugin

content/en/docs/reference/command-line-tools-reference/feature-gates/SchedulerQueueingHints.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,12 @@ stages:
1717
- stage: beta
1818
defaultValue: true
1919
fromVersion: "1.32"
20+
toVersion: "1.33"
21+
- stage: stable
22+
defaultValue: true
23+
fromVersion: "1.34"
2024
---
21-
Enables [the scheduler's _queueing hints_ feature](/docs/concepts/scheduling-eviction/scheduling-framework/#queueinghint),
25+
Enables scheduler [queueing hints](/docs/concepts/scheduling-eviction/scheduling-framework/#queueinghint),
2226
which benefits to reduce the useless requeueing.
2327
The scheduler retries scheduling pods if something changes in the cluster that could make the pod scheduled.
2428
Queueing hints are internal signals that allow the scheduler to filter the changes in the cluster

0 commit comments

Comments
 (0)