使用Spring云网关和Nginx作为反向代理的网关超时
我为我的应用程序创建了一个 API 网关,它将充当其他微服务的前端控制器。在我的生产设置中,我使用Nginx作为网关的反向代理
API 网关在端口 8080 上运行
Nginx配置如下:
gateway-api.conf:
server {
listen 80;
server_name api.example.com;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_pass http://localhost:30010/;
keepalive_timeout 500s;
}
keepalive_timeout 500s;
access_log /var/log/nginx/api.log;
error_log /var/log/nginx/api_error.log;
}
nginx.conf 中的超时设置:
proxy_connect_timeout 300;
proxy_send_timeout 300;
proxy_read_timeout 300;
send_timeout 300;
春云网关文件:
compile('org.springframework.cloud:spring-cloud-starter-gateway')
compile('org.springframework.cloud:spring-cloud-starter-openfeign')
compile("org.springframework.boot:spring-boot-starter-actuator")
compile('org.springframework.boot:spring-boot-starter-security')
springBootVersion=2.0.3.RELEASE
springDMPVersion=1.0.4.RELEASE
springPlatformBomVersion=Cairo-SR2
springCloudVersion=Finchley.RELEASE
网关应用:
@SpringBootApplication
@ComponentScan(basePackages = {"com.example"})
@EntityScan(basePackages = {"com.example"})
@EnableFeignClients(basePackages = "com.example")
public class GatewayApplication {
public static void main(String[] args) {
SpringApplication.run(GatewayApplication.class, args);
}
}
问题陈述:
在我的一个微服务中,一个 REST API 需要 3 分钟以上才能完成。如果我通过 调用此 API,它会在 1 分钟后恰好失败,并给出 HTTP 状态 504。nginx(api.example.com)
卷曲:
curl --request GET \
--url http://api.example.com/hellomicroservice/api/take/moretime
错误:
504 Timeout while reading the response from Server
nginx或API网关中没有错误日志。
来自nginx的访问日志:
203.129.213.102 - - [01/Apr/2019:08:14:33 +0000] "GET hellomicroservice/api/take/moretime HTTP/1.1" 499 0 "-" "PostmanRuntime/7.3.0"
但是,当我直接调用网关(在网关端口 8080 上)的同一 API 时,请求将得到成功处理。
带网关端口的卷曲:
curl --request GET \
--url http://api.example.com:8080/hellomicroservice/api/take/moretime
编辑:
如果我将Nginx超时设置应用于小于60秒(例如30秒),则请求将在指定的时间间隔内超时。但是,如果我将Nginx超时设置为超过60秒,则为300秒,请求将在60秒后超时。