일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- HashMap
- Set
- Access-Control-Allow-Origin
- 원격
- ArrayList
- xrdp
- mqtt
- cors
- mariadb 다국어
- mysql 다국어
- mariadb 한국어
- mysql 한국어
- db utf8
- #spring boot
- com.netflix.zuul.exception.ZuulException: Hystrix Readed time out
- 크로스도메인
- TreeMap
- java collection
- com.netflix.zuul.exception.ZuulException
- emqx
- Hystrix Read time out
- #actuator
- #MSA
- mstsc
- #spring boot admin
- IOT
- backtracking
- message protocol
- CORS policy: No 'Access-Control-Allow-Origin'
- mosquitto
- Today
- Total
목록IT_Spring/spring cloud (Microservice) (3)
miin29na
Spring 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...
MSA 를 구성하기 위해, config-service 를 구성 후에 이번 포스팅에서는, discovery service를 구성한다. Config-service 는 이전글을 참조한다. Spring Cloud Discovery Server (Eureka Server) 는 Micro service 들을 감시하고 관리하는 서비스이다. 이전 글에서, "Config-service, discovery-service, proxy-service, A-service, B-service 5개의 서버가 물리적으로 다른 서버에서 수행된다. "discovery-service : Eureka Server proxy-service, A-service, B-servie : Eureka Client -Micro service 들의 목록..
MSA 를 구성하기 위해, 다음과 같이 사용하였다. Spring Boot : 2.0.0.RELEASESpring Cloud : Greenwich.M2MavenMariaDB : 13.1 (view tool HeidiSQL9.4) Config-service, discovery-service, proxy-service, A-service, B-service 5개의 서버가 물리적으로 다른 서버에서 수행된다. (Test 용으로 나는local 에서 수행한다.) Spring Cloud Config Server 는 Config Client 들의 설정 파일을 한군데서 일괄적으로 관리하게 해준다. Config-service 가 discovery, proxy, A, B 의 설정을 관리한다. 이때 spring 에서는 관리 방..