1syntax = "proto3"; 2 3package envoy.extensions.load_balancing_policies.round_robin.v3; 4 5import "envoy/extensions/load_balancing_policies/common/v3/common.proto"; 6 7import "udpa/annotations/status.proto"; 8 9option java_package = "io.envoyproxy.envoy.extensions.load_balancing_policies.round_robin.v3"; 10option java_outer_classname = "RoundRobinProto"; 11option java_multiple_files = true; 12option go_package = "github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/round_robin/v3;round_robinv3"; 13option (udpa.annotations.file_status).package_version_status = ACTIVE; 14 15// [#protodoc-title: Round Robin Load Balancing Policy] 16// [#extension: envoy.load_balancing_policies.round_robin] 17 18// This configuration allows the built-in ROUND_ROBIN LB policy to be configured via the LB policy 19// extension point. See the :ref:`load balancing architecture overview 20// <arch_overview_load_balancing_types>` for more information. 21message RoundRobin { 22 // Configuration for slow start mode. 23 // If this configuration is not set, slow start will not be not enabled. 24 common.v3.SlowStartConfig slow_start_config = 1; 25 26 // Configuration for local zone aware load balancing or locality weighted load balancing. 27 common.v3.LocalityLbConfig locality_lb_config = 2; 28} 29