2eac7a7862
LB_ALGORITHM_SOURCE_IP_PORT is an algorithm used by OVN Load Balancer [0]. This patch adds its support to the API. [0] https://review.opendev.org/#/c/660369 Depends-On: I605f44f0f50219aa003df477de9bae4062f3c308 Change-Id: I436a6e553065d1755d465d20ad36f7ba2cbb8eba Task: 35952 Story: 2006264
17 lines
667 B
YAML
17 lines
667 B
YAML
---
|
|
features:
|
|
- |
|
|
New Load Balancing algorithm SOURCE_IP_PORT has been added.
|
|
It is supported only by OVN provider driver.
|
|
upgrade:
|
|
- |
|
|
All pools configured under OVN provider driver are
|
|
automatically migrated to SOURCE_IP_PORT algorithm.
|
|
Previously algorithm was named as ROUND_ROBIN, but in
|
|
fact it was not working like ROUND_ROBIN. After
|
|
investigating, it was observed that core OVN actually
|
|
utilizes a 5 Tuple Hash/RSS Hash in DPDK/Kernel as a Load
|
|
Balancing algorithm. The 5 Tuple Hash has Source IP, Destination
|
|
IP, Protocol, Source Port, Destination Port.
|
|
To reflect this the name was changed to SOURCE_IP_PORT.
|