• 周六. 4月 27th, 2024

5G编程聚合网

5G时代下一个聚合的编程学习网

热门标签

Nginx1.1.4+ 对后端机器的长连接特性

admin

11月 28, 2021

转自:http://zhangxugg-163-com.iteye.com/blog/1551269

nginx upstream keepalive connections

 

Nginx从 1.1.4 开始,实现了对后端机器的长连接支持,这是一个激动人心的改进,这意味着 Nginx 与后端机器的通信效率更高,后端机器的负担更低。

 

例如,对一个没有长连接支持的后端机器,会出现大量TIME_WAIT 状态的连接,使用以下命令验证之:

netstat -n | grep TIME_WAIT

 

经过查阅官方文档,其目前已经实现了http, fastcgi, memcache 协议的长连接支持。而之前的版本中仅支持 memcache 协议。

 

1. 启用到 memcache 服务器的长连接
在upstream
配置段中增加
keepalive N
指令即可:

upstream memcached_backend {

    server 127.0.0.1:11211;

    server 10.0.0.2:11211;

   
 keepalive 32;

}

 

server {

    …

    location /memcached/ {

        set $memcached_key $uri;

        memcached_pass memcached_backend;

    }

}

 

 

2. 
启用fastcgi
长连接支持

除了需要在upstream
中配置
keepalive N
外,还需要在
location
中增加
fastcgi_keep_conn on;

upstream fastcgi_backend {

    server 127.0.0.1:9000;

    
keepalive 8;

}

 

server {

    …

    location /fastcgi/ {

        fastcgi_pass fastcgi_backend;

        
fastcgi_keep_conn on;

        …

    }

}

 

3. 
启用对后端机器HTTP
长连接支持

upstream http_backend {

    server 127.0.0.1:8080;

    keepalive 16;

}

 

server {

    …

    location /http/ {

        proxy_pass http://http_backend;

        proxy_http_version 1.1;

        proxy_set_header Connection “”;

        …

    }

}

 

注意:需要设置nginx
代理请求的
http
协议版本号为
1.1, 
以及清除掉
Connection
请求
header, 
官方文档描述:

For HTTP, the proxy_http_version directive should be set to “
1.1
” 
and the 

Connection
” 
header field should be cleared

.

 

The connections parameter should be set low enough to allow upstream servers to process additional new incoming connections as well. 

 

即是说:keepalive N
指令中
, N
的值应该尽可能设置小一些,以便后端机器可以同时接受新的连接。

 

在我负责的生产环境中,前端是nginx, 
静态文件缓存使用
varnish, 
使用长连接之后,
varnish
机器的连接数从
8000
多下降至
200
多,负载值也有明显降低。

 

但是针对fastcgi, 
即后端机器是
php-fpm
服务时,在
nginx
日志中出现以下错误:

 upstream sent unsupported FastCGI protocol version: 0 while reading upstream

 

广泛搜集,目前还未解决之。如果您遇到同样的问题并解决之,请一定联系笔者信箱[email protected],

 甚是感谢。

《Nginx1.1.4+ 对后端机器的长连接特性》有23个想法
  1. EyeFortin is an all-natural eye-health supplement that helps to keep your eyes healthy even as you age. It prevents infections and detoxifies your eyes while also being stimulant-free. This makes it a great choice for those who are looking for a natural way to improve their eye health. https://eyefortinbuynow.us/

  2. Fast Lean Pro is a herbal supplement that tricks your brain into imagining that you’re fasting and helps you maintain a healthy weight no matter when or what you eat. It offers a novel approach to reducing fat accumulation and promoting long-term weight management. https://fastleanprobuynow.us/

  3. Erec Prime is a natural formula designed to boost your virility and improve your male enhancement abilities, helping you maintain long-lasting performance. This product is ideal for men facing challenges with maintaining strong erections and desiring to enhance both their size and overall health. https://erecprimebuynow.us/

  4. Herpagreens is a dietary supplement formulated to combat symptoms of herpes by providing the body with high levels of super antioxidants, vitamins

  5. EndoPump is a dietary supplement for men’s health. This supplement is said to improve the strength and stamina required by your body to perform various physical tasks. Because the supplement addresses issues associated with aging, it also provides support for a variety of other age-related issues that may affect the body. https://endopumpbuynow.us/

  6. Glucofort Blood Sugar Support is an all-natural dietary formula that works to support healthy blood sugar levels. It also supports glucose metabolism. According to the manufacturer, this supplement can help users keep their blood sugar levels healthy and within a normal range with herbs, vitamins, plant extracts, and other natural ingredients. https://glucofortbuynow.us/

  7. Gut Vita™ is a daily supplement that helps consumers to improve the balance in their gut microbiome, which supports the health of their immune system. It supports healthy digestion, even for consumers who have maintained an unhealthy diet for a long time. https://gutvitabuynow.us/

  8. Illuderma is a serum designed to deeply nourish, clear, and hydrate the skin. The goal of this solution began with dark spots, which were previously thought to be a natural symptom of ageing. The creators of Illuderma were certain that blue modern radiation is the source of dark spots after conducting extensive research. https://illudermabuynow.us/

  9. Kerassentials are natural skin care products with ingredients such as vitamins and plants that help support good health and prevent the appearance of aging skin. They’re also 100% natural and safe to use. The manufacturer states that the product has no negative side effects and is safe to take on a daily basis. Kerassentials is a convenient, easy-to-use formula. https://kerassentialsbuynow.us/

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注