[总结]Nginx 负载均衡策略
Nginx 作为高性能web服务器,负载均衡是其基本功能之一。 注:负载均衡至少需要两台机器
1. 负载均衡
负载均衡可以将请求前端的请求分担到后端多个节点上,提升系统的响应和处理能力。
2. 负载均衡策略
负载均衡的策略可以大致分为两大类:内置策略
和扩展策略
内置策略:一般会直接编译进Nginx内核,常用的有、轮询、ip hash、最少连接
扩展策略:fair、url hash等
2-1. 内置策略
- 轮询策略 (简单)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
http { # ... 省略其它配置 upstream polling_strategy { server 192.168.0.100:8080; server 192.168.0.101:8080; } server { server_name www.searchinfogo.com listen 80; location / { proxy_pass http://polling_strategy; } } # ... 省略其它配置 } |
- 轮询策略(轮询加权/round-robin)
到应用服务器的请求以round-robin/轮询的方式被分发
配置
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
http { # ... 省略其它配置 upstream weight_strategy { server 192.168.0.100:8080 weight=1 fail_timeout=20s; server 192.168.0.101:8080 weight=2 fail_timeout=20s; } server { server_name www.searchinfogo.com listen 80; location / { proxy_pass http://weight_strategy; } } # ... 省略其它配置 } |
- ip hash
使用hash算法来决定下一个请求要选择哪个服务器(基于客户端IP地址)
配置
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
http { # ... 省略其它配置 upstream ip_hash_strategy { server 192.168.0.100:8080; server 192.168.0.101:8080; ip_hash; } server { server_name www.searchinfogo.com listen 80; location / { proxy_pass http://ip_hash_strategy; } } # ... 省略其它配置 } |
- 最少连接(least_conn)
下一个请求将被分派到活动连接数量最少的服务器
配置
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
http { # ... 省略其它配置 upstream least_conn_strategy { server 192.168.0.100:8080; server 192.168.0.101:8080; least_conn; } server { server_name www.searchinfogo.com listen 80; location / { proxy_pass http://least_conn_strategy; } } # ... 省略其它配置 } |
2-2. 扩展策略
- fair
配置
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
http { # ... 省略其它配置 upstream fair_strategy { server 192.168.0.100:8080; server 192.168.0.101:8080; fair; } server { server_name www.searchinfogo.com listen 80; location / { proxy_pass http://fair_strategy; } } # ... 省略其它配置 } |
- url hash
配置
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
http { # ... 省略其它配置 upstream url_hash_strategy { server 192.168.0.100:8080; server 192.168.0.101:8080; hash $request_uri; hash_method crc32; } server { server_name www.searchinfogo.com listen 80; location / { proxy_pass http://url_hash_strategy; } } # ... 省略其它配置 } |
weight=1; (weight 默认为1.weight越大,负载的权重就越大)
down; (down 表示单前的server暂时不参与负载)
backup; (其它所有的非backup机器down或者忙的时候,请求backup机器)
max_fails :允许请求失败的次数默认为1.当超过最大次数时,返回proxy_next_upstream 模块定义的错误
fail_timeout:max_fails次失败后,暂停的时间
3. 重定向rewrite
1 2 3 4 |
location / { #重定向 #rewrite ^ http://localhost:8080; } |
验证思路:本地使用localhost:80端口进行访问,根据nginx的配置,如果重定向没有生效,则最后会停留在当前localhost:80这个路径,浏览器中的地址栏地址不会发生改变;如果生效了则地址栏地址变为localhost:8080;
4. 最后
1 |
nginx -s reload <span class="hljs-comment">#重启nginx</span> |
[source]
nginx 反向代理和负载均衡策略实战案例