"Varnish 헬스 체크"의 두 판 사이의 차이

25번째 줄: 25번째 줄:
  }
  }
</source>
</source>
:→ 웹루트에 대해 5초마다 점검하여, 1초 이상 지연되면 실패로 판단함
:→ 최근 5회 점검 중 3회 이상 성공이 아니라면 백엔드 장애로 판단함


==같이 보기==
==같이 보기==

2016년 6월 26일 (일) 18:22 판

1 개요

Varnish Health checks
varnish 백엔드 헬스 체크
backend server1 {
  .host = "server1.example.com";
  .probe = {
         .url = "/";
         .interval = 5s;
         .timeout = 1 s;
         .window = 5;
         .threshold = 3;
    }
  }
backend server2 {
   .host = "server2.example.com";
   .probe = {
         .url = "/";
         .interval = 5s;
         .timeout = 1 s;
         .window = 5;
         .threshold = 3;
   }
 }
→ 웹루트에 대해 5초마다 점검하여, 1초 이상 지연되면 실패로 판단함
→ 최근 5회 점검 중 3회 이상 성공이 아니라면 백엔드 장애로 판단함

2 같이 보기

3 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}