nginx重試機制proxy_next_upstream


nginx作為反向代理服務器,后端RS有多台服務器,上層通過一定機制保證容錯和負載均衡。

nginx的重試機制就是容錯的一種

官方鏈接:http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_next_upstream

proxy_next_upstream error | timeout | invalid_header | http_500 | http_502 | http_503 | http_504 | http_403 | http_404 | http_429 | non_idempotent | off ...;
Default:    proxy_next_upstream error timeout;
Context:    http, server, location

指定應將請求傳遞到下一個服務器的情況:
error             # 與服務器建立連接,向其傳遞請求或讀取響應頭時發生錯誤;
timeout           # 在與服務器建立連接,向其傳遞請求或讀取響應頭時發生超時;
invalid_header    # 服務器返回空的或無效的響應;
http_500          # 服務器返回代碼為500的響應;
http_502          # 服務器返回代碼為502的響應;
http_503          # 服務器返回代碼為503的響應;
http_504          # 服務器返回代碼504的響應;
http_403          # 服務器返回代碼為403的響應;
http_404          # 服務器返回代碼為404的響應;
http_429          # 服務器返回代碼為429的響應(1.11.13);
non_idempotent    # 通常,請求與 非冪等 方法(POST,LOCK,PATCH)不傳遞到請求是否已被發送到上游服務器(1.9.13)的下一個服務器; 啟用此選項顯式允許重試此類請求;
off               # 禁用將請求傳遞給下一個服務器。

下面還有一個參數影響重試次數,0表示不限制。:

Syntax:     proxy_next_upstream_tries number;
Default:    proxy_next_upstream_tries 0;
Context:    http, server, location

舉例如下:

upstream app-proxy {
    server 192.168.5.100:8080;
    server 192.168.5.101:8080;
    check interval=2000 rise=1 fall=3 timeout=3000 type=http;
    check_keepalive_requests 1;
#    check_http_send "HEAD /status/status.html HTTP/1.1\r\n\r\n"; 
    check_http_send "GET /status/status.html HTTP/1.1\r\nConnection: close\r\nHost: localhost\r\n\r\n"; 
    check_http_expect_alive http_2xx http_3xx;
}

location / {
      proxy_pass         http://app-proxy;
      proxy_next_upstream error timeout http_500 http_502 http_503 http_504;
      proxy_next_upstream_tries 3;
      proxy_connect_timeout 60s;
      proxy_read_timeout 60s;
      proxy_send_timeout 60s;
      proxy_pass_request_headers      on;
      proxy_set_header   Host             $host:$server_port;
      proxy_set_header   X-Real-IP        $remote_addr;
      proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
      set $domain default;

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM