From 9ada9c653840b6466aae1861e2da3e4689bf0174 Mon Sep 17 00:00:00 2001 From: Ian Chen Date: Mon, 24 Apr 2023 14:07:32 +0800 Subject: [PATCH] Update scheduling_algorithms.rst --- doc/source/scheduling_algorithms.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/source/scheduling_algorithms.rst b/doc/source/scheduling_algorithms.rst index bb31022527..a1d84e80f9 100644 --- a/doc/source/scheduling_algorithms.rst +++ b/doc/source/scheduling_algorithms.rst @@ -76,3 +76,9 @@ Overflow-Connection (ovf) ************************* The Overflow connection scheduling algorithm implements "overflow" loadbalancing according to a number of active connections, will keep all connections to the node with the highest weight and overflow to the next node if the number of connections exceeds the node's weight. Note that this scheduler might not be suitable for UDP because it only uses active connections + +Weighted failover (fo) +************************* + +The weighted failover scheduling algorithm implements the simple failover solution. +Connections are always directed to the selected server based solely on highest weight value and server availability.