Skip to content
Open
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixes min_weight_percent nit
  • Loading branch information
anuragagarwal561994 committed Aug 28, 2025
commit 15247c979020434f4935859857f1f5f0a73b9887
4 changes: 2 additions & 2 deletions A100-client-side-weighted-round-robin-slow-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ message SlowStartConfig {
// By tuning the parameter, it is possible to achieve polynomial or exponential shape of ramp-up curve.
//
// During slow start window, effective weight of an endpoint would be scaled with time factor and aggression:
// ``new_weight = weight * max(min_weight_percent, time_factor ^ (1 / aggression))``,
// ``new_weight = weight * max(min_weight_percent / 100, time_factor ^ (1 / aggression))``,
// where ``time_factor=(time_since_start_seconds / slow_start_time_seconds)``.
//
// As time progresses, more and more traffic would be sent to endpoint, which is in slow start window.
Expand Down Expand Up @@ -251,4 +251,4 @@ The functionality is being implemented in Java. It will be implemented in Go, C+
Java Implementation: https://github.com/grpc/grpc-java/pull/12200

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