Skip to content

Commit 196dd87

Browse files
Adds slow start config to wrr proto message
1 parent 8efd30d commit 196dd87

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

api/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.proto

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ syntax = "proto3";
22

33
package envoy.extensions.load_balancing_policies.client_side_weighted_round_robin.v3;
44

5+
import "envoy/extensions/load_balancing_policies/common/v3/common.proto";
6+
57
import "google/protobuf/duration.proto";
68
import "google/protobuf/wrappers.proto";
79

@@ -82,4 +84,8 @@ message ClientSideWeightedRoundRobin {
8284
// For map fields in the ORCA proto, the string will be of the form ``<map_field_name>.<map_key>``. For example, the string ``named_metrics.foo`` will mean to look for the key ``foo`` in the ORCA :ref:`named_metrics <envoy_v3_api_field_.xds.data.orca.v3.OrcaLoadReport.named_metrics>` field.
8385
// If none of the specified metrics are present in the load report, then :ref:`cpu_utilization <envoy_v3_api_field_.xds.data.orca.v3.OrcaLoadReport.cpu_utilization>` is used instead.
8486
repeated string metric_names_for_computing_utilization = 7;
87+
88+
// Configuration for slow start mode.
89+
// If this configuration is not set, slow start will not be not enabled.
90+
common.v3.SlowStartConfig slow_start_config = 8;
8591
}

0 commit comments

Comments
 (0)