envoy_extensions_filters_http_adaptive_concurrency_v3

package
v1.14.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 13, 2022 License: Apache-2.0 Imports: 22 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_envoy_extensions_filters_http_adaptive_concurrency_v3_adaptive_concurrency_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type AdaptiveConcurrency

type AdaptiveConcurrency struct {

	// Types that are assignable to ConcurrencyControllerConfig:
	//	*AdaptiveConcurrency_GradientControllerConfig
	ConcurrencyControllerConfig isAdaptiveConcurrency_ConcurrencyControllerConfig `protobuf_oneof:"concurrency_controller_config"`
	// If set to false, the adaptive concurrency filter will operate as a pass-through filter. If the
	// message is unspecified, the filter will be enabled.
	Enabled *v31.RuntimeFeatureFlag `protobuf:"bytes,2,opt,name=enabled,proto3" json:"enabled,omitempty"`
	// contains filtered or unexported fields
}

func (*AdaptiveConcurrency) Descriptor deprecated

func (*AdaptiveConcurrency) Descriptor() ([]byte, []int)

Deprecated: Use AdaptiveConcurrency.ProtoReflect.Descriptor instead.

func (*AdaptiveConcurrency) GetConcurrencyControllerConfig

func (m *AdaptiveConcurrency) GetConcurrencyControllerConfig() isAdaptiveConcurrency_ConcurrencyControllerConfig

func (*AdaptiveConcurrency) GetEnabled

func (x *AdaptiveConcurrency) GetEnabled() *v31.RuntimeFeatureFlag

func (*AdaptiveConcurrency) GetGradientControllerConfig

func (x *AdaptiveConcurrency) GetGradientControllerConfig() *GradientControllerConfig

func (*AdaptiveConcurrency) ProtoMessage

func (*AdaptiveConcurrency) ProtoMessage()

func (*AdaptiveConcurrency) ProtoReflect added in v1.7.0

func (x *AdaptiveConcurrency) ProtoReflect() protoreflect.Message

func (*AdaptiveConcurrency) Reset

func (x *AdaptiveConcurrency) Reset()

func (*AdaptiveConcurrency) String

func (x *AdaptiveConcurrency) String() string

func (*AdaptiveConcurrency) Validate

func (m *AdaptiveConcurrency) Validate() error

Validate checks the field values on AdaptiveConcurrency with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type AdaptiveConcurrencyValidationError

type AdaptiveConcurrencyValidationError struct {
	// contains filtered or unexported fields
}

AdaptiveConcurrencyValidationError is the validation error returned by AdaptiveConcurrency.Validate if the designated constraints aren't met.

func (AdaptiveConcurrencyValidationError) Cause

Cause function returns cause value.

func (AdaptiveConcurrencyValidationError) Error

Error satisfies the builtin error interface

func (AdaptiveConcurrencyValidationError) ErrorName

ErrorName returns error name.

func (AdaptiveConcurrencyValidationError) Field

Field function returns field value.

func (AdaptiveConcurrencyValidationError) Key

Key function returns key value.

func (AdaptiveConcurrencyValidationError) Reason

Reason function returns reason value.

type AdaptiveConcurrency_GradientControllerConfig

type AdaptiveConcurrency_GradientControllerConfig struct {
	// Gradient concurrency control will be used.
	GradientControllerConfig *GradientControllerConfig `protobuf:"bytes,1,opt,name=gradient_controller_config,json=gradientControllerConfig,proto3,oneof"`
}

type GradientControllerConfig

type GradientControllerConfig struct {

	// The percentile to use when summarizing aggregated samples. Defaults to p50.
	SampleAggregatePercentile *v3.Percent                                                 `` /* 138-byte string literal not displayed */
	ConcurrencyLimitParams    *GradientControllerConfig_ConcurrencyLimitCalculationParams `` /* 129-byte string literal not displayed */
	MinRttCalcParams          *GradientControllerConfig_MinimumRTTCalculationParams       `protobuf:"bytes,3,opt,name=min_rtt_calc_params,json=minRttCalcParams,proto3" json:"min_rtt_calc_params,omitempty"`
	// contains filtered or unexported fields
}

Configuration parameters for the gradient controller.

func (*GradientControllerConfig) Descriptor deprecated

func (*GradientControllerConfig) Descriptor() ([]byte, []int)

Deprecated: Use GradientControllerConfig.ProtoReflect.Descriptor instead.

func (*GradientControllerConfig) GetConcurrencyLimitParams

func (*GradientControllerConfig) GetMinRttCalcParams

func (*GradientControllerConfig) GetSampleAggregatePercentile

func (x *GradientControllerConfig) GetSampleAggregatePercentile() *v3.Percent

func (*GradientControllerConfig) ProtoMessage

func (*GradientControllerConfig) ProtoMessage()

func (*GradientControllerConfig) ProtoReflect added in v1.7.0

func (x *GradientControllerConfig) ProtoReflect() protoreflect.Message

func (*GradientControllerConfig) Reset

func (x *GradientControllerConfig) Reset()

func (*GradientControllerConfig) String

func (x *GradientControllerConfig) String() string

func (*GradientControllerConfig) Validate

func (m *GradientControllerConfig) Validate() error

Validate checks the field values on GradientControllerConfig with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type GradientControllerConfigValidationError

type GradientControllerConfigValidationError struct {
	// contains filtered or unexported fields
}

GradientControllerConfigValidationError is the validation error returned by GradientControllerConfig.Validate if the designated constraints aren't met.

func (GradientControllerConfigValidationError) Cause

Cause function returns cause value.

func (GradientControllerConfigValidationError) Error

Error satisfies the builtin error interface

func (GradientControllerConfigValidationError) ErrorName

ErrorName returns error name.

func (GradientControllerConfigValidationError) Field

Field function returns field value.

func (GradientControllerConfigValidationError) Key

Key function returns key value.

func (GradientControllerConfigValidationError) Reason

Reason function returns reason value.

type GradientControllerConfig_ConcurrencyLimitCalculationParams

type GradientControllerConfig_ConcurrencyLimitCalculationParams struct {

	// The allowed upper-bound on the calculated concurrency limit. Defaults to 1000.
	MaxConcurrencyLimit *wrappers.UInt32Value `protobuf:"bytes,2,opt,name=max_concurrency_limit,json=maxConcurrencyLimit,proto3" json:"max_concurrency_limit,omitempty"`
	// The period of time samples are taken to recalculate the concurrency limit.
	ConcurrencyUpdateInterval *duration.Duration `` /* 138-byte string literal not displayed */
	// contains filtered or unexported fields
}

Parameters controlling the periodic recalculation of the concurrency limit from sampled request latencies.

func (*GradientControllerConfig_ConcurrencyLimitCalculationParams) Descriptor deprecated

Deprecated: Use GradientControllerConfig_ConcurrencyLimitCalculationParams.ProtoReflect.Descriptor instead.

func (*GradientControllerConfig_ConcurrencyLimitCalculationParams) GetConcurrencyUpdateInterval

func (*GradientControllerConfig_ConcurrencyLimitCalculationParams) GetMaxConcurrencyLimit

func (*GradientControllerConfig_ConcurrencyLimitCalculationParams) ProtoMessage

func (*GradientControllerConfig_ConcurrencyLimitCalculationParams) ProtoReflect added in v1.7.0

func (*GradientControllerConfig_ConcurrencyLimitCalculationParams) Reset

func (*GradientControllerConfig_ConcurrencyLimitCalculationParams) String

func (*GradientControllerConfig_ConcurrencyLimitCalculationParams) Validate

Validate checks the field values on GradientControllerConfig_ConcurrencyLimitCalculationParams with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type GradientControllerConfig_ConcurrencyLimitCalculationParamsValidationError

type GradientControllerConfig_ConcurrencyLimitCalculationParamsValidationError struct {
	// contains filtered or unexported fields
}

GradientControllerConfig_ConcurrencyLimitCalculationParamsValidationError is the validation error returned by GradientControllerConfig_ConcurrencyLimitCalculationParams.Validate if the designated constraints aren't met.

func (GradientControllerConfig_ConcurrencyLimitCalculationParamsValidationError) Cause

Cause function returns cause value.

func (GradientControllerConfig_ConcurrencyLimitCalculationParamsValidationError) Error

Error satisfies the builtin error interface

func (GradientControllerConfig_ConcurrencyLimitCalculationParamsValidationError) ErrorName

ErrorName returns error name.

func (GradientControllerConfig_ConcurrencyLimitCalculationParamsValidationError) Field

Field function returns field value.

func (GradientControllerConfig_ConcurrencyLimitCalculationParamsValidationError) Key

Key function returns key value.

func (GradientControllerConfig_ConcurrencyLimitCalculationParamsValidationError) Reason

Reason function returns reason value.

type GradientControllerConfig_MinimumRTTCalculationParams

type GradientControllerConfig_MinimumRTTCalculationParams struct {

	// The time interval between recalculating the minimum request round-trip time. Has to be
	// positive.
	Interval *duration.Duration `protobuf:"bytes,1,opt,name=interval,proto3" json:"interval,omitempty"`
	// The number of requests to aggregate/sample during the minRTT recalculation window before
	// updating. Defaults to 50.
	RequestCount *wrappers.UInt32Value `protobuf:"bytes,2,opt,name=request_count,json=requestCount,proto3" json:"request_count,omitempty"`
	// Randomized time delta that will be introduced to the start of the minRTT calculation window.
	// This is represented as a percentage of the interval duration. Defaults to 15%.
	//
	// Example: If the interval is 10s and the jitter is 15%, the next window will begin
	// somewhere in the range (10s - 11.5s).
	Jitter *v3.Percent `protobuf:"bytes,3,opt,name=jitter,proto3" json:"jitter,omitempty"`
	// The concurrency limit set while measuring the minRTT. Defaults to 3.
	MinConcurrency *wrappers.UInt32Value `protobuf:"bytes,4,opt,name=min_concurrency,json=minConcurrency,proto3" json:"min_concurrency,omitempty"`
	// Amount added to the measured minRTT to add stability to the concurrency limit during natural
	// variability in latency. This is expressed as a percentage of the measured value and can be
	// adjusted to allow more or less tolerance to the sampled latency values.
	//
	// Defaults to 25%.
	Buffer *v3.Percent `protobuf:"bytes,5,opt,name=buffer,proto3" json:"buffer,omitempty"`
	// contains filtered or unexported fields
}

Parameters controlling the periodic minRTT recalculation. [#next-free-field: 6]

func (*GradientControllerConfig_MinimumRTTCalculationParams) Descriptor deprecated

Deprecated: Use GradientControllerConfig_MinimumRTTCalculationParams.ProtoReflect.Descriptor instead.

func (*GradientControllerConfig_MinimumRTTCalculationParams) GetBuffer

func (*GradientControllerConfig_MinimumRTTCalculationParams) GetInterval

func (*GradientControllerConfig_MinimumRTTCalculationParams) GetJitter

func (*GradientControllerConfig_MinimumRTTCalculationParams) GetMinConcurrency

func (*GradientControllerConfig_MinimumRTTCalculationParams) GetRequestCount

func (*GradientControllerConfig_MinimumRTTCalculationParams) ProtoMessage

func (*GradientControllerConfig_MinimumRTTCalculationParams) ProtoReflect added in v1.7.0

func (*GradientControllerConfig_MinimumRTTCalculationParams) Reset

func (*GradientControllerConfig_MinimumRTTCalculationParams) String

func (*GradientControllerConfig_MinimumRTTCalculationParams) Validate

Validate checks the field values on GradientControllerConfig_MinimumRTTCalculationParams with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type GradientControllerConfig_MinimumRTTCalculationParamsValidationError

type GradientControllerConfig_MinimumRTTCalculationParamsValidationError struct {
	// contains filtered or unexported fields
}

GradientControllerConfig_MinimumRTTCalculationParamsValidationError is the validation error returned by GradientControllerConfig_MinimumRTTCalculationParams.Validate if the designated constraints aren't met.

func (GradientControllerConfig_MinimumRTTCalculationParamsValidationError) Cause

Cause function returns cause value.

func (GradientControllerConfig_MinimumRTTCalculationParamsValidationError) Error

Error satisfies the builtin error interface

func (GradientControllerConfig_MinimumRTTCalculationParamsValidationError) ErrorName

ErrorName returns error name.

func (GradientControllerConfig_MinimumRTTCalculationParamsValidationError) Field

Field function returns field value.

func (GradientControllerConfig_MinimumRTTCalculationParamsValidationError) Key

Key function returns key value.

func (GradientControllerConfig_MinimumRTTCalculationParamsValidationError) Reason

Reason function returns reason value.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL