You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.5 KiB
38 lines
1.5 KiB
5 years ago
|
syntax = "proto3";
|
||
|
|
||
|
package envoy.config.core.v4alpha;
|
||
|
|
||
|
import "google/protobuf/duration.proto";
|
||
|
|
||
|
import "udpa/annotations/status.proto";
|
||
|
import "udpa/annotations/versioning.proto";
|
||
|
import "validate/validate.proto";
|
||
|
|
||
|
option java_package = "io.envoyproxy.envoy.config.core.v4alpha";
|
||
|
option java_outer_classname = "BackoffProto";
|
||
|
option java_multiple_files = true;
|
||
|
option (udpa.annotations.file_status).package_version_status = NEXT_MAJOR_VERSION_CANDIDATE;
|
||
|
|
||
|
// [#protodoc-title: Backoff Strategy]
|
||
|
|
||
|
// Configuration defining a jittered exponential back off strategy.
|
||
|
message BackoffStrategy {
|
||
|
option (udpa.annotations.versioning).previous_message_type =
|
||
|
"envoy.config.core.v3.BackoffStrategy";
|
||
|
|
||
|
// The base interval to be used for the next back off computation. It should
|
||
|
// be greater than zero and less than or equal to :ref:`max_interval
|
||
|
// <envoy_api_field_config.core.v4alpha.BackoffStrategy.max_interval>`.
|
||
|
google.protobuf.Duration base_interval = 1 [(validate.rules).duration = {
|
||
|
required: true
|
||
|
gte {nanos: 1000000}
|
||
|
}];
|
||
|
|
||
|
// Specifies the maximum interval between retries. This parameter is optional,
|
||
|
// but must be greater than or equal to the :ref:`base_interval
|
||
|
// <envoy_api_field_config.core.v4alpha.BackoffStrategy.base_interval>` if set. The default
|
||
|
// is 10 times the :ref:`base_interval
|
||
|
// <envoy_api_field_config.core.v4alpha.BackoffStrategy.base_interval>`.
|
||
|
google.protobuf.Duration max_interval = 2 [(validate.rules).duration = {gt {}}];
|
||
|
}
|