You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What should we add or change to make your life better?
I would like YARP to add a Load balancing facility. It can be thought of in two format
One is Canary deployment, where we can say we need 80% traffic to the old route and 20% to the new one.
Unirfomly distribute load using round-robin method across routes
Why is this important to you?
In Kubernetes deployment we can use this easily. Otherwise, just for such a small requirement, we need to install cluster wide service mesh. As we all understand Service Mesh is complex.
The text was updated successfully, but these errors were encountered:
2. Unirfomly distribute load using round-robin method across routes
Load balancing is enabled by default, and round-robin is one of the options. The default load balancing algorithm is PowerOfTwoChoices since it is both very quick and simple but still quite good at distributing load. Round-robin assumes all requests are of equal cost, it doesn't take into account any backlog that builds up on a given node.
What should we add or change to make your life better?
I would like YARP to add a Load balancing facility. It can be thought of in two format
Why is this important to you?
The text was updated successfully, but these errors were encountered: