Skip to content

Commit

Permalink
make round robin balancer the default for a global rollout (#574)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrahs committed May 21, 2024
1 parent 50b93e0 commit a5e60eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/pkg/flags/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ var (
KeepAlivePermitWithoutStream = flag.Bool("grpc_keepalive_permit_without_stream", false, "If true, client sends keepalive pings even with no active RPCs; otherwise, doesn't send pings even if time and timeout are set. Default is false.")
// UseRoundRobinBalancer is a temporary feature flag to rollout a simplified load balancer.
// See http://go/remote-apis-sdks/issues/499
UseRoundRobinBalancer = flag.Bool("use_round_robin_balancer", false, "If true, a round-robin connection bool is used for gRPC. Otherwise, the existing load balancer is used.")
UseRoundRobinBalancer = flag.Bool("use_round_robin_balancer", true, "If true (default), a round-robin connection bool is used for gRPC. Otherwise, the existing load balancer is used.")
// RoundRobinBalancerPoolSize specifies the pool size for the round robin balancer.
RoundRobinBalancerPoolSize = flag.Int("round_robin_balancer_pool_size", client.DefaultMaxConcurrentRequests, "pool size for round robin grpc balacner")
)
Expand Down

0 comments on commit a5e60eb

Please sign in to comment.