当前位置:   article > 正文

【Nginx】反向代理流程四-上游出现失败时的容错方案_proxy-next-upstream-timeout

proxy-next-upstream-timeout

目录

 

1.上游出现失败时的容错方案

2. proxy_next_upstream

3. proxy_next_upstream_timeout

4. proxy_next_upstream_tries

5.proxy_intercept_errors

6.测试案例


1.上游出现失败时的容错方案

  1. Nginx作为代理服务器与上游服务连接以及传输数据时,只要上游服务器没有向客户端发送一个字节,
  2. 就可以认定某些上游的响应是有问题的,此时代理服务器可以重新选择另外一个上游服务器作为服务器
  3. 对这个请求作出响应,之后代理服务器再将这个服务器的响应传给客户端,从而使得客户端没有感知到
  4. 后面有服务器其实已经不工作的这个事件的,这个功能对于Nginx作为一个集群的代理服务器用来容纳
  5. 一些出错的上游服务来说是非常有效的.
  6. "【Nginx】反向代理流程一"文中提到的proxy_next_upstream以及本文中的
  7. proxy_next_upstream_timeout
  8. proxy_next_upstream_tries
  9. 指令都可以对反向代理过程中上游出现失败时进行一定的设置和处理.
  10. http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_next_upstream
  11. http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_next_upstream_timeout
  12. http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_next_upstream_tries
  13. http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_intercept_errors

2. proxy_next_upstream

  1. 官方的手册:
  2. Syntax: proxy_next_upstream error | timeout | invalid_header
  3. | http_500 | http_502 | http_503 | http_504 | http_403
  4. | http_404 | http_429 | non_idempotent | off ...;
  5. Default:proxy_next_upstream error timeout;
  6. Context:http, server, location
  7. Specifies in which cases a request should be passed to the next server:
  8. error
  9. an error occurred while establishing a connection with the server, passing a request to
  10. it, or reading the response header;
  11. timeout
  12. a timeout has occurred while establishing a connection with the server, passing a
  13. request to it, or reading the response header;
  14. invalid_header
  15. a server returned an empty or invalid response;
  16. http_500
  17. a server returned a response with the code 500;
  18. http_502
  19. a server returned a response with the code 502;
  20. http_503
  21. a server returned a response with the code 503;
  22. http_504
  23. a server returned a response with the code 504;
  24. http_403
  25. a server returned a response with the code 403;
  26. http_404
  27. a server returned a response with the code 404;
  28. http_429
  29. a server returned a response with the code 429 (1.11.13);
  30. non_idempotent
  31. normally, requests with a non-idempotent method (POST, LOCK, PATCH) are not passed to
  32. the next server if a request has been sent to an upstream server (1.9.13); enabling this
  33. option explicitly allows retrying such requests;
  34. off
  35. disables passing a request to the next server.
  36. One should bear in mind that passing a request to the next server is only possible if
  37. nothing has been sent to a client yet. That is, if an error or timeout occurs in the
  38. middle of the transferring of a response, fixing this is impossible.
  39. The directive also defines what is considered an unsuccessful attempt of communication
  40. with a server. The cases of error, timeout and invalid_header are always considered
  41. unsuccessful attempts, even if they are not specified in the directive. The cases of
  42. http_500, http_502, http_503, http_504, and http_429 are considered unsuccessful
  43. attempts only if they are specified in the directive. The cases of http_403 and http_404
  44. are never considered unsuccessful attempts.
  45. Passing a request to the next server can be limited by the number of tries and by time.
  46. 中文理解:
  47. 当上游返回出错的时候,我们可以用proxy_next_upstream这个指令来进行容错处理.
  48. 上下文是http, server, location.
  49. 这个指令生效的前提是没有向客户端发生任何内容,只要上游服务器向客户端发送哪怕是一个字节,都
  50. 说明这个上游服务已经生效了,就不能再选择一个新的上游服务了,所以一定是在接收到并开始转发一
  51. 个字节之前Nginx判断为错误,这个功能才能生效.
  52. proxy_next_upstream这个指令后面可以跟很多不同的参数,如官方文档提供的那些:
  53. error--只要出现错误,error都可以满足这样的场景,这个错误主要指网络错误,如TCP和IP层的错误
  54. timeout--超时,分为连接超时,读超时,写超时,当出现这些场景的时候,可以执行重选另一个上游服务
  55. invalid_header--表示收到的上游服务器的header是不合法的
  56. http_500--上游服务器返回500
  57. http_502--上游服务器返回502
  58. http_503--上游服务器返回503
  59. http_504--上游服务器返回504
  60. http_403--上游服务器返回403
  61. http_404--上游服务器返回404
  62. http_429--上游服务器返回429
  63. non_idempotent--normally, requests with a non-idempotent method (POST, LOCK, PATCH) are
  64. not passed to the next server if a request has been sent to an upstream server (1.9.13);
  65. enabling this option explicitly allows retrying such requests;
  66. 通常来说,含有POST, LOCK, PATCH这类非幂等方法的请求在已经发送给上游服务器的情况下是不能够
  67. 再向另一个上游服务器发送这样的请求的,但是如果设置了这个指令,就明确指出可以将已经发送给一
  68. 个上游服务器的请求发送给另一个上游服务器.
  69. off--关闭proxy_next_upstream这个功能

3. proxy_next_upstream_timeout

  1. Syntax: proxy_next_upstream_timeout time;
  2. Default:
  3. proxy_next_upstream_timeout 0;
  4. Context: http, server, location
  5. This directive appeared in version 1.7.5.
  6. Limits the time during which a request can be passed to the next server.
  7. The 0 value turns off this limitation.

4. proxy_next_upstream_tries

  1. Syntax: proxy_next_upstream_tries number;
  2. Default:
  3. proxy_next_upstream_tries 0;
  4. Context: http, server, location
  5. This directive appeared in version 1.7.5.
  6. Limits the number of possible tries for passing a request to the next server.
  7. The 0 value turns off this limitation.

5.proxy_intercept_errors

  1. http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_intercept_errors
  2. 官方手册:
  3. Syntax: proxy_intercept_errors on | off;
  4. Default:proxy_intercept_errors off;
  5. Context:http, server, location
  6. Determines whether proxied responses with codes greater than or equal to 300 should be
  7. passed to a client or be intercepted and redirected to nginx for processing with the
  8. error_page directive.
  9. 功能:
  10. 用error_page拦截并重新定义上游失败响应的内容
  11. 中文理解:
  12. 决定了上游服务器返回大于等于300的返回码时返回信息是直接返回给客户端还是返回给代理服务器Nginx
  13. 用error_page命令去处理这个错误码再返回给客户端.

 

6.测试案例

  1. 测试步骤:
  2. (1)开始的时候,一台代理服务器(端口8080),两台上游服务器(第一个上游服务器
  3. 端口是8081,第二个上游服务器端口是8082),代理服务器采用Round-Robin
  4. 算法,代理服务器中相关的容错配置是“proxy_next_upstream off”,
  5. curl 127.0.0.1:8080/error可以发现两台服务器是正常地轮流提供服务的;
  6. (2)之后将第二个上游服务器的端口改了并reload,再去用curl 127.0.0.1:8080/error测试,
  7. 此时轮到访问第二个服务器的时候,报错"502 Bad Gateway",此时已经
  8. 连接不上第二个上游服务器了,由于容错配置的是“proxy_next_upstream off”,
  9. 直接将报错信息返回给客户端;
  10. (3)将代理服务器中相关的容错配置改成“proxy_next_upstream error”并reload,
  11. 可以发现,虽然我们仍然用的Round-Robin算法(上游两台服务器应该轮流访问),
  12. 但是每次我们总是能获取到返回值的,因为访问第二个上游服务器的时候失败
  13. 导致proxy_next_upstream生效,于是重新改用第一个服务器来为用户提供服务,
  14. 这个功能可以使得Nginx把错误屏蔽,这是分布式集群下非常好用的一个功能.
  15. 只要还有上游服务能工作,客户端就能得到服务.
  16. (4)将第二个服务器的端口改回正确的端口并且reload生效,此时又回到第一步那样
  17. 的正常情况.
  18. (5)第二个服务返回的是500,虽然它不是一个错误,但是如果想对它做特殊处理也是
  19. 可以的,此时在上游服务器中配置一个新的location,配置如:
  20. location /htterr{
  21. proxy_next_upstream http_500;
  22. proxy_pass http://local;
  23. };
  24. 这样就会重新选择一个上游服务器,而不把这个500返回给客户端.
  25. 此时用curl 127.0.0.1:8080/htterr测试可以发现,每次应该访问第二台服务
  26. 器的时候,都又重新自动转到第一台服务器上进行访问.因为第二台返回的是500,
  27. 代理服务器对500返回码做特殊处理--继续请求其他上游服务器.
  28. (6)在反代服务配置中添加:
  29. location /intercept{
  30. proxy_intercept_errors off;
  31. proxy_pass http://127.0.0.1:8082;
  32. }
  33. 此时访问curl 127.0.0.1:8080/intercept直接访问8082(第二个服务器),8082返回的
  34. 状态码是500,得到“8082 Server Internal Error”;
  35. (7)修改在反代服务配置中“location /intercept”中的配置并添加error_page的设置,如下:
  36. server{
  37. error_page 500 /test1.txt;
  38. location /intercept{
  39. proxy_intercept_errors on;
  40. proxy_pass http://127.0.0.1:8082;
  41. }
  42. }
  43. 配置好之后reload,然后curl 127.0.0.1:8080/test1.txt可以看到里面的内容“test1”;
  44. 再去访问intercept,curl 127.0.0.1:8080/intercep,此时我们我们将不会再得到
  45. 8082 Server Internal Error”这个错误了,而是返回了“test1”这个内容,因为此时
  46. 8082端口对应的这个上游服务的返回码是500,反代服务器对这个错误码做了特别的设置,
  47. 将返回给客户端的内容重定向到error_page设置的内容中去了.

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/喵喵爱编程/article/detail/913654
推荐阅读
相关标签
  

闽ICP备14008679号