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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently the algorithm to dispatch traffic is very simple. It's just a simple circular rotation :
To do that we need a state : the last(or next) real server used.
The idea of "doing a random pick" was raised. This way we could remove the state. We could investigate this.
Maybe we can use : bpf_get_prandom_u32 helper function.
bpf_get_prandom_u32
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently the algorithm to dispatch traffic is very simple.
It's just a simple circular rotation :
To do that we need a state : the last(or next) real server used.
The idea of "doing a random pick" was raised. This way we could remove the state.
We could investigate this.
Maybe we can use :
bpf_get_prandom_u32
helper function.The text was updated successfully, but these errors were encountered: