使用AWS网络负载均衡器进行均匀均衡

时间:2020-09-24 12:31:07

标签: amazon-web-services amazon-elb

我们在AWS网络负载均衡器后面有几台服务器。 用来平衡流量的算法是“轮循”,描述如下: “对于网络负载平衡器,接收连接的负载平衡器节点使用以下过程:

Selects a target from the target group for the default rule using a flow hash algorithm. It bases the algorithm on:

    The protocol

    The source IP address and source port

    The destination IP address and destination port

    The TCP sequence number

Routes each individual TCP connection to a single target for the life of the connection. 
The TCP connections from a client have different source ports and sequence numbers, and can be routed to different targets."

由于连接的持久性,服务器负载可能不平衡,并可能导致问题。

如何配置网络负载平衡器以路由负载较小的服务器上的新连接?

1 个答案:

答案 0 :(得分:1)

ALB现在支持Least Outstanding Request路由。 NLB似乎不支持此功能(还可以吗?)

是否有可能使您的LB策略适应NLB的ALB?