springcloud 설정 열 갱신 갱신 기록

1273 단어
자세히 보기
소프트웨어 버전
spring-boot-starter-parent 1.5.6.RELEASE
spring.cloud.version Dalston.RELEASE

  
구성 센터 파일 수정
호출 서비스 설정 업데이트
curl-X POST http://192.168.108.199:6130/refresh

이상을 보고하다
{
    "timestamp": 1521278382874,
    "status": 500,
    "error": "Internal Server Error",
    "exception": "java.util.concurrent.RejectedExecutionException",
    "message": "Request processing failed; nested exception is java.util.concurrent.RejectedExecutionException: Task java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask@778db5a5 rejected from java.util.concurrent.ScheduledThreadPoolExecutor@3318012b[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 23]",
    "path": "/refresh"
}

원인은 eureka 모니터링 검사 스레드 탱크의 크기와 관련이 있다
해결 방법,healthcheck 건강 검사를 닫거나 건강 검사 라인 탱크 크기를 설정합니다. 
 
eureka:
  client:
    healthcheck:
      enabled: false 
    heartbeat-executor-thread-pool-size: 5 

 
기타 솔루션, 확인 필요

좋은 웹페이지 즐겨찾기