Skip to content
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

Move Budget settings to new BudgetDetails struct #3695

Merged
merged 1 commit into from
Mar 20, 2025
Merged
Show file tree
Hide file tree
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
47 changes: 29 additions & 18 deletions apisx/v1alpha1/xbackendtrafficpolicy_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,26 +119,11 @@ type BackendTrafficPolicySpec struct {

// RetryConstraint defines the configuration for when to retry a request.
type RetryConstraint struct {
// BudgetPercent defines the maximum percentage of active requests that may
// be made up of retries.
//
// Support: Extended
//
// +optional
// +kubebuilder:default=20
// +kubebuilder:validation:Minimum=0
// +kubebuilder:validation:Maximum=100
BudgetPercent *int `json:"budgetPercent,omitempty"`

// BudgetInterval defines the duration in which requests will be considered
// for calculating the budget for retries.
//
// Support: Extended
// Budget holds the details of the retry budget configuration.
//
// +optional
// +kubebuilder:default="10s"
// +kubebuilder:validation:XValidation:message="budgetInterval can not be greater than one hour or less than one second",rule="!(duration(self) < duration('1s') || duration(self) > duration('1h'))"
BudgetInterval *Duration `json:"budgetInterval,omitempty"`
// +kubebuilder:default={percent: 20, interval: "10s"}
Budget *BudgetDetails `json:"budget,omitempty"`

// MinRetryRate defines the minimum rate of retries that will be allowable
// over a specified duration of time.
Expand All @@ -157,3 +142,29 @@ type RetryConstraint struct {
// +kubebuilder:default={count: 10, interval: "1s"}
MinRetryRate *RequestRate `json:"minRetryRate,omitempty"`
}

// BudgetDetails specifies the details of the budget configuration, like
// the percentage of requests in the budget, and the interval between
// checks.
type BudgetDetails struct {
// BudgetPercent defines the maximum percentage of active requests that may
// be made up of retries.
//
// Support: Extended
//
// +optional
// +kubebuilder:default=20
// +kubebuilder:validation:Minimum=0
// +kubebuilder:validation:Maximum=100
Percent *int `json:"percent,omitempty"`

// BudgetInterval defines the duration in which requests will be considered
// for calculating the budget for retries.
//
// Support: Extended
//
// +optional
// +kubebuilder:default="10s"
// +kubebuilder:validation:XValidation:message="budgetInterval can not be greater than one hour or less than one second",rule="!(duration(self) < duration('1s') || duration(self) > duration('1h'))"
Interval *Duration `json:"interval,omitempty"`
}
38 changes: 29 additions & 9 deletions apisx/v1alpha1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 52 additions & 0 deletions applyconfiguration/apisx/v1alpha1/budgetdetails.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 6 additions & 19 deletions applyconfiguration/apisx/v1alpha1/retryconstraint.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 11 additions & 5 deletions applyconfiguration/internal/internal.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions applyconfiguration/utils.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 32 additions & 12 deletions pkg/generated/openapi/zz_generated.openapi.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading