Load Balancing of requests coming from a single client

Dhirendra Singh 0 Reputation points
2024-06-24T11:14:41.02+00:00

I have a question regarding load balancing of a service by Azure Load Balancer. My load balancing requirement is as follows:

  1. I will have multiple application servers for a non-http service. Application servers will be behind Azure load balancer(layer 4).
  2. A client will initiate a connection to the load balancer and will send multiple requests over this same connection.
  3. Load balancer need to distribute the requests from this single client connection to the multiple application servers in the backend.

Does Azure load balancer provide such load balancing?

Azure Load Balancer
Azure Load Balancer
An Azure service that delivers high availability and network performance to applications.
419 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. GitaraniSharma-MSFT 49,011 Reputation points Microsoft Employee
    2024-06-24T11:35:30.81+00:00

    Hello @Dhirendra Singh ,

    Welcome to Microsoft Q&A Platform. Thank you for reaching out & hope you are doing well.

    I understand that you would like to know if requests coming from a single client will be load balanced to the multiple application servers in the backend.

    Yes, Azure load balancer will load balance the requests coming from a single client to the multiple application servers in the backend.

    Azure Load Balancer uses a five-tuple hashing algorithm for the distribution of inbound flows (not bytes). Load balancer rewrites the headers of TCP/UDP headers flows when directing traffic to the backend pool instances (load balancer doesn't rewrite HTTP/HTTPS headers). When the load balancer's health probe indicates a healthy backend endpoint, backend instances are available to receive new traffic flows.

    By default, Azure Load Balancer uses a five-tuple hash.

    The hash is used to route traffic to healthy backend instances within the backend pool. The algorithm provides stickiness only within a transport session. When the client starts a new session from the same source IP, the source port changes and causes the traffic to go to a different backend instance. In order to configure hash-based distribution, you must select session persistence to be None in the Azure portal. This specifies that successive requests from the same client may be handled by any virtual machine in the backend.

    User's image

    Refer: https://learn.microsoft.com/en-us/azure/load-balancer/concepts

    https://learn.microsoft.com/en-us/azure/load-balancer/distribution-mode-concepts

    Kindly let us know if the above helps or you need further assistance on this issue.


    Please "Accept the answer" if the information helped you. This will help us and others in the community as well.

    0 comments No comments