Load Balancing Load balancing is a process where multiple servers are symmetrically combined into a server set. Each server has an equal status and can provide services independently without the assistance of other servers. Through a certain load sharing technology, the requests sent from the outside are evenly distributed to a server in the symmetrical structure, and the server that receives the request responds to the user's request independently. Load balancing can evenly distribute service requests to the server array, quickly obtain data, and solve the problem of large numbers of concurrent access services. Load balancing classification 1. DNS load balancing On the DNS server, configure multiple A records. The servers corresponding to these A records form a cluster. advantage :
shortcoming:
2. IP load balancing At the network layer, load balancing is performed by modifying the request target address. After the user request data packet arrives at the load balancing server, the load balancing server obtains the network data packet in the operating system kernel process, obtains a real server address based on the load balancing algorithm, and then modifies the requested target address to the obtained real IP address. IP load balancing, the real physical server returns to the load balancing server. There are two ways:
advantage :
shortcoming :
3. Link layer load balancing Modify the MAC address at the data link layer of the communication protocol to perform load balancing. The actual processing server IP is consistent with the data request destination IP, and does not need to be translated by the load balancing server. The response data packet can be returned directly to the user's browser, preventing the load balancing server network card bandwidth from becoming a bottleneck. Also called direct routing mode (DR mode). As shown below: Advantages : good performance 4. Hybrid load balancingDue to the differences in hardware equipment, scale, and services provided by multiple server clusters, you can consider using the most appropriate load balancing method for each server cluster, and then load balance or cluster them again among so many server clusters to provide services to the outside world as a whole (treating multiple server clusters as a new server cluster) to achieve optimal performance. Method 1, as shown below: The above mode is suitable for scenarios with dynamic and static separation. The reverse proxy server (cluster) can play the role of caching and dynamic request distribution. When static resources are cached in the proxy server, they are directly returned to the browser. If it is a dynamic page, the subsequent application load balancing is requested. The above scenarios are suitable for dynamic request scenarios. Load Balancing AlgorithmCommon load balancing algorithms include polling, random, least link, source address hashing, weighted, etc. 1 PollingDistribute all requests to each server in turn, which is suitable for scenarios with the same server hardware. Advantages : The number of server requests is the same; Disadvantages : The server pressure is different, which is not suitable for situations with different server configurations; 2 Random Requests are randomly assigned to servers. Disadvantages : Not suitable for scenarios with different machine configurations; 3 Minimum linksDispatches requests to the server with the fewest connections (the server currently handling the fewest requests). Advantages : Dynamic allocation based on the current request processing status of the server; Disadvantages : The algorithm is relatively complex to implement and requires monitoring the number of server request connections; 4 Hash (source address hash)Perform hash calculation based on the IP address to obtain the IP address. Advantages : forward requests from the same IP address to the same server during the same session; achieve session stickiness. Disadvantages : If the target server goes down, the session will be lost; 5 WeightedBased on polling, random, least link, Hash' and other algorithms, load server distribution is performed in a weighted manner. Advantages : Adjust the number of requests to the forwarding server according to the weight; Disadvantages : relatively complicated to use; Reverse ProxyReverse proxy means that the proxy server accepts connection requests on the Internet, then forwards the requests to the server on the internal network, and returns the results obtained on the server to the client requesting the connection on the Internet. At this time, the proxy server appears to the outside world as a server. This is the end of this article about nginx load balancing and reverse proxy. For more relevant nginx load balancing and reverse proxy content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of the use of Vue mixin
>>: CSS style writing order and naming conventions and precautions
1. Installation and use First, install it in your...
/***************** * proc file system************...
SpringBoot is like a giant python, slowly winding...
Table of contents Single-machine deployment Onlin...
The implementation principle of Vue2.0/3.0 two-wa...
In a cluster with master-slave replication mode, ...
In centos7, the permissions of the /etc/rc.d/rc.l...
In my previous article, I said that the optimizat...
Preview: Code: Page Sections: <template> &l...
I believe many programmers are familiar with MySQ...
How to solve the timeout problem when pip is used...
The detailed installation process of mysql5.7.21 ...
A singly linked list can only be traversed from t...
Get the Dockerfile from the Docker image docker h...
Mysql supports 3 types of lock structures Table-l...