envoy_config_retry_other_priority

package
v0.6.3 Latest Latest
Warning

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

Go to latest
Published: Nov 12, 2018 License: Apache-2.0 Imports: 14 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthOtherPriorityConfig = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowOtherPriorityConfig   = fmt.Errorf("proto: integer overflow")
)

Functions

This section is empty.

Types

type OtherPriorityConfig

type OtherPriorityConfig struct {
	// How often the priority load should be updated based on previously attempted priorities. Useful
	// to allow each priorities to receive more than one request before being excluded or to reduce
	// the number of times that the priority load has to be recomputed.
	//
	// For example, by setting this to 2, then the first two attempts (initial attempt and first
	// retry) will use the unmodified priority load. The third and fourth attempt will use priority
	// load which excludes the priorities routed to with the first two attempts, and the fifth and
	// sixth attempt will use the priority load excluding the priorities used for the first four
	// attempts.
	UpdateFrequency      int32    `protobuf:"varint,1,opt,name=update_frequency,json=updateFrequency,proto3" json:"update_frequency,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

A retry host selector that attempts to spread retries between priorities, even if certain priorities would not normally be attempted due to higher priorities being available.

As priorities get excluded, load will be distributed amongst the remaining healthy priorities based on the relative health of the priorities, matching how load is distributed during regular host selection. For example, given priority healths of {100, 50, 50}, the original load will be {100, 0, 0} (since P0 has capacity to handle 100% of the traffic). If P0 is excluded, the load changes to {0, 50, 50}, because P1 is only able to handle 50% of the traffic, causing the remaining to spill over to P2.

Each priority attempted will be excluded until there are no healthy priorities left, at which point the list of attempted priorities will be reset, essentially starting from the beginning. For example, given three priorities P0, P1, P2 with healthy % of 100, 0 and 50 respectively, the following sequence of priorities would be selected (assuming update_frequency = 1): Attempt 1: P0 (P0 is 100% healthy) Attempt 2: P2 (P0 already attempted, P2 only healthy priority) Attempt 3: P0 (no healthy priorities, reset) Attempt 4: P2

Using this PriorityFilter requires rebuilding the priority load, which runs in O(# of priorities), which might incur significant overhead for clusters with many priorities.

func (*OtherPriorityConfig) Descriptor

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

func (*OtherPriorityConfig) GetUpdateFrequency

func (m *OtherPriorityConfig) GetUpdateFrequency() int32

func (*OtherPriorityConfig) Marshal

func (m *OtherPriorityConfig) Marshal() (dAtA []byte, err error)

func (*OtherPriorityConfig) MarshalTo

func (m *OtherPriorityConfig) MarshalTo(dAtA []byte) (int, error)

func (*OtherPriorityConfig) ProtoMessage

func (*OtherPriorityConfig) ProtoMessage()

func (*OtherPriorityConfig) Reset

func (m *OtherPriorityConfig) Reset()

func (*OtherPriorityConfig) Size

func (m *OtherPriorityConfig) Size() (n int)

func (*OtherPriorityConfig) String

func (m *OtherPriorityConfig) String() string

func (*OtherPriorityConfig) Unmarshal

func (m *OtherPriorityConfig) Unmarshal(dAtA []byte) error

func (*OtherPriorityConfig) Validate

func (m *OtherPriorityConfig) Validate() error

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

func (*OtherPriorityConfig) XXX_DiscardUnknown

func (m *OtherPriorityConfig) XXX_DiscardUnknown()

func (*OtherPriorityConfig) XXX_Marshal

func (m *OtherPriorityConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*OtherPriorityConfig) XXX_Merge

func (dst *OtherPriorityConfig) XXX_Merge(src proto.Message)

func (*OtherPriorityConfig) XXX_Size

func (m *OtherPriorityConfig) XXX_Size() int

func (*OtherPriorityConfig) XXX_Unmarshal

func (m *OtherPriorityConfig) XXX_Unmarshal(b []byte) error

type OtherPriorityConfigValidationError

type OtherPriorityConfigValidationError struct {
	Field  string
	Reason string
	Cause  error
	Key    bool
}

OtherPriorityConfigValidationError is the validation error returned by OtherPriorityConfig.Validate if the designated constraints aren't met.

func (OtherPriorityConfigValidationError) Error

Error satisfies the builtin error interface

Jump to

Keyboard shortcuts

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