We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
@jasonjoo2010 submit a new Smooth Round Robin for:
The Round Robin balancer is not smooth with weights, such as:
A:B:C = 1:2:3
Will be: [A, B, B, C, C, C, A, B, B, C, C, C, A, B, B, C, C, C, ..........]
But we want it to be: [A, B, C, B, C, C, A, B, C, B, C, C, A, B, C, B, C, C, ..........]
which has been discuss before for performance: #2578
Brief changelog reimplement RoundRobinLoadBalance and its unit test.
More discussion here: #2578
Also see: #2647
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@jasonjoo2010 submit a new Smooth Round Robin for:
The Round Robin balancer is not smooth with weights, such as:
A:B:C = 1:2:3
Will be:
[A, B, B, C, C, C, A, B, B, C, C, C, A, B, B, C, C, C, ..........]
But we want it to be:
[A, B, C, B, C, C, A, B, C, B, C, C, A, B, C, B, C, C, ..........]
which has been discuss before for performance: #2578
Brief changelog
reimplement RoundRobinLoadBalance and its unit test.
More discussion here:
#2578
Also see:
#2647
The text was updated successfully, but these errors were encountered: