File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
keps/sig-api-machinery/1040-priority-and-fairness Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -738,9 +738,17 @@ the dispatching for non-exempt priority levels.
738
738
Exempt *ExemptPriorityLevelConfiguration
739
739
```
740
740
741
- At the same time, the relevant new datatype was added. It is shown below.
741
+ At the same time, the relevant new datatype was added. It is shown
742
+ below. The default number of nominal concurrency shares is set to the
743
+ minimal value (i.e., 1) so as to minimize disruption as this feature
744
+ is rolled into existing clusters; authorized administrators can choose
745
+ to set it higher.
742
746
743
747
``` go
748
+ // ExemptPriorityLevelConfiguration describes the configurable aspects
749
+ // of the handling of exempt requests.
750
+ // In the mandatory exemp configuration object the values in the fields
751
+ // here can be modified by authorized users, unlike the rest of the `spec`.
744
752
type ExemptPriorityLevelConfiguration struct {
745
753
// `nominalConcurrencyShares` (NCS) contributes to the computation of the
746
754
// NominalConcurrencyLimit (NominalCL) of this level.
@@ -755,7 +763,7 @@ type ExemptPriorityLevelConfiguration struct {
755
763
//
756
764
// Bigger numbers mean a larger nominal concurrency limit,
757
765
// at the expense of every other Limited priority level.
758
- // This field has a default value of 30 .
766
+ // This field has a default value of 1 .
759
767
// +optional
760
768
NominalConcurrencyShares int32
761
769
You can’t perform that action at this time.
0 commit comments