超時重試思考-非冪等請求

轉載請註明出處 http://www.paraller.com
原文排版地址 點擊跳轉html

轉載請註明出處 來源:paraller's blognginx

upstream www.paraller.com {
        server 10.29.209.14*:3810;
        server 10.24.225.11*:3810;
        server 10.25.208.38*:3810;
}

server {
  server_name www.paraller.com;
  listen 80 ;
  access_log /var/log/nginx/access.log vhost;
  return 301 https://$host$request_uri;
}


server {
        server_name www.paraller.com;
        listen 443 ssl http2 ;
        access_log /var/log/nginx/access.log vhost;
      

        add_header Strict-Transport-Security "max-age=31536000";
           location ^~ /socket.io/ {
        return 301;
    }
    location / {
                proxy_pass http://www.paraller.com;
                proxy_connect_timeout 20;
                proxy_read_timeout 20;
                proxy_send_timeout 20;
                proxy_ignore_client_abort on;
        }
}
  • proxy_connect_timeout 後端服務器鏈接的超時時間_發起握手等候響應超時時間
  • proxy_read_timeout 鏈接成功後_等候後端服務器響應時間_其實已經進入後端的排隊之中等候處理(也能夠說是後端服務器處理請求的時間)
  • proxy_send_timeout :後端服務器數據回傳時間_就是在規定時間以內後端服務器必須傳完全部的數據

nginx在某個版本更新以後,對非冪等的請求不會進行重試處理。後端

若是要對冪等操做重試請求

In case of upstream returning 429, I'd like to have nginx retry next upstream server. Since nginx by default won't retry non-idempotent requests, how do I force nginx to retry when receiving 429? I imagine this should be the default behavior anyway, or does nginx not care about returning code and will never retry non-idempotent?服務器

If you want nginx to retry non-idempotent requests, you can do so with "proxy_next_upstream non-idempotent;", see http://nginx.org/r/proxy_next... socket

http://nginx.2469901.n2.nabble.com/upstream-429-and-non-idempotent-request-td7600353.htmlide

優先參考上面的回答,下面是 stackflow的示例:學習

upstream backends {
    server 192.2.0.1;
    server 192.2.0.2;
    ...
}

server {
    ...

    location / {
        proxy_pass http://backends;
        proxy_next_upstream error timeout http_404;
    }
}

參考網站

https://stackoverflow.com/questions/12868683/nginx-proxy-next-upstream-doesnt-work
https://stackoverflow.com/questions/40661246/nginx-tries-to-proxy-pass-to-upstream-name網站

關於該參數的詳細解釋
nginx proxy_next_upstreamthis

Nginx學習總結:proxy與rewrite模塊(三)socket.io

相關文章
相關標籤/搜索