Skip to content

Commit 5201ee2

Browse files
author
Anurag Agarwal
authored
Fixes min_weight_percent nit
1 parent 7ac1dc0 commit 5201ee2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

A100-client-side-weighted-round-robin-slow-start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ message SlowStartConfig {
6060
// By tuning the parameter, it is possible to achieve polynomial or exponential shape of ramp-up curve.
6161
//
6262
// During slow start window, effective weight of an endpoint would be scaled with time factor and aggression:
63-
// ``new_weight = weight * max(min_weight_percent, time_factor ^ (1 / aggression))``,
63+
// ``new_weight = weight * max(min_weight_percent / 100, time_factor ^ (1 / aggression))``,
6464
// where ``time_factor=(time_since_start_seconds / slow_start_time_seconds)``.
6565
//
6666
// As time progresses, more and more traffic would be sent to endpoint, which is in slow start window.
@@ -251,4 +251,4 @@ The functionality is being implemented in Java. It will be implemented in Go, C+
251251
Java Implementation: https://github.com/grpc/grpc-java/pull/12200
252252

253253
[Envoy Slow Start Documentation]: https://www.envoyproxy.io/docs/envoy/latest/intro/arch_overview/upstream/load_balancing/slow_start
254-
[A58]: A58-client-side-weighted-round-robin-lb-policy.md
254+
[A58]: A58-client-side-weighted-round-robin-lb-policy.md

0 commit comments

Comments
 (0)