-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Test] circuitbreaker test #22
Conversation
Test Results22 tests 22 ✅ 3s ⏱️ Results for commit 494cec3. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
제가 이해한 것을 이야기해보면 circuitbreaker는 healthcheck 와 유사한 개념이라고 이해하였고, 특정 엔드포인트가 아닌 metric의 상태 점검 엔드포인트로 요청을 보내는 방식같은데 healtcheck와 차이가 있나요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
msa 환경에서 circuitbreaker는 보내는 주체는 apigateway인가요?
그리고 현재 구현된 내용은 gateway에서 요청에 대한 처리를 위한 구현내용인가요?
health check의 경우 현재 서버의 상태 체크와 관련되어 있다라고 생각하시면 될거 같은데 서킷브레이커는 이거와는 다른 개념입니다. 서버 간의 통신 상황에서 한 서버가 마비되어 죽는다면 차단기를 내린다라고 생각하면 편하실거 같습니다. |
각 서버간의 통신입니다. 대신 서버가 다른 서버를 찾는 것은 디스커버리 서버를 통해 찾고 서버 간의 통신은 게이트웨이를 거치지 않습니다. 서킷 브레이커는 해당 서버에 위치하게 됩니다. |
✏️ 작업 개요
circuitbreaker test 진행
⛳ 작업 분류
🔨 작업 상세 내용
💡 생각해볼 문제