Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- mstsc
- #spring boot
- #actuator
- emqx
- mysql 다국어
- cors
- Access-Control-Allow-Origin
- com.netflix.zuul.exception.ZuulException: Hystrix Readed time out
- IOT
- mqtt
- db utf8
- Hystrix Read time out
- 원격
- xrdp
- #MSA
- 크로스도메인
- CORS policy: No 'Access-Control-Allow-Origin'
- ArrayList
- Set
- HashMap
- backtracking
- java collection
- mariadb 한국어
- mosquitto
- mysql 한국어
- mariadb 다국어
- message protocol
- com.netflix.zuul.exception.ZuulException
- #spring boot admin
- TreeMap
Archives
- Today
- Total
miin29na
com.netflix.zuul.exception.ZuulException: Hystrix Readed time out 504 Error 본문
IT_Spring/spring cloud (Microservice)
com.netflix.zuul.exception.ZuulException: Hystrix Readed time out 504 Error
miin29na 2020. 2. 18. 19:19Spring Cloud Zuul 을 사용한 API Gateway 에서
Rest API 호출 시, response 의 Data 가 커서 response 응답이 오래 걸리는 문제
Rest API 호출 Error Log
{
"timestamp": "2020-02-18T10:16:18.507+0000",
"status": 504,
"error": "Gateway Timeout",
"message": "com.netflix.zuul.exception.ZuulException: Hystrix Readed time out"
}
Zuule Server Error Log
com.netflix.zuul.exception.ZuulException:
at org.springframework.cloud.netflix.zuul.filters.post.SendErrorFilter.findZuulException(SendErrorFilter.java:114)
at org.springframework.cloud.netflix.zuul.filters.post.SendErrorFilter.run(SendErrorFilter.java:76)
application.yml (or bootstrap.yml)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
zuul:
routes:
abc: // text 는 아무거나 사용 가능
path: /abc/**
serviceId: abc-service
myusers-service: // serviceId 명시
ribbon:
ConnectTimeout: 1000
ReadTimeout: 3000
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
https://cloud.spring.io/spring-cloud-netflix/multi/multi__router_and_filter_zuul.html
'IT_Spring > spring cloud (Microservice)' 카테고리의 다른 글
[spring cloud] eureka server(설정 + replication, 이중화) (0) | 2018.11.26 |
---|---|
[spring cloud] config server (Environment Repository_jdbc backend, git, filesystem) (0) | 2018.11.22 |
Comments