我为我的应用程序创建了一个 API 网关,它将充当其他微服务的前端控制器。在我的生产设置中,我使用Nginx作为网关的反向代理
API 网关在端口 8080 上运行
恩金克斯配置如下:
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;
}
超时设置:
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
慕运维8079593
回首忆惘然
摇曳的蔷薇
阿晨1998
相关分类