nginx 의 maxfails 버그

4976 단어 nginx
고장 묘 사 는 인도의 lebi 방문 이 느 리 고 10.154.30.27 지연 으로 인 한 것 이다.설정 은 다음 과 같 습 니 다.
upstream newlebi {
        server 10.154.30.94:8080 weight=1 max_fails=3 fail_timeout=10s;
        server 10.154.30.27:8080 weight=1 max_fails=3 fail_timeout=10s;
}

오류 보고 현상 은 백 엔 드 60 초 초과 로 나 타 났 습 니 다.
 :
"10.58.114.68","[10/Mar/2017:14:39:30 +0800]","HTTP/1.1","-","POST","/bdp/action/tableDeploy/loadTableDeploy/ONLINE_APPLY","200","http://in.lebi.letv.cn/bdp/action/tableDeploy/loadTableDeploy/ONLINE_APPLY","62","181.679","10.121.152.89:8081","-","Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36","181.679"
 :
"10.58.114.68","[10/Mar/2017:14:39:59 +0800]","HTTP/1.1","-","POST","/bdp/action/tableDeploy/loadTableDeploy/ONLINE_APPLY","200","http://in.lebi.letv.cn/bdp/action/tableDeploy/loadTableDeploy/ONLINE_APPLY","62","62.438","10.121.152.89:8081","-","Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36","62.438"

제 가 leibi 설정 을 알 아 봤 어 요.
upstream newlebi {
        server 10.154.30.94:8080;
        server 10.154.30.27:8080;
}

로그 에서 고장 난 서버 를 차 버 렸 어 요.
결론 적 으로 자신 이 파악 하지 못 한 매개 변 수 를 늘 리 기만 하면 오히려 역 효 과 를 낸다.
테스트 한 jssdk 로 테스트 해 보 니 불필요 한 파 라 메 터 를 제거 한 후 두 개의 백 엔 드 ip 을 중복 요청 하 는 경우 가 없 었 습 니 다.일괄 업데이트 명령 nginx 설정 명령
sed -i 's/weight=1 max_fails=3 fail_timeout=10s//g' urm.jamesding.top.conf #    
cd /etc/nginx/conf.d/
sed -i 's/weight=1 max_fails=3 fail_timeout=10s//g' *.conf

하지만 제 가 테스트 한 로 거 두 가지 설정 은 제 가 닫 은 242 서버 의 상황 을 제거 할 수 있 습 니 다.그래서 내 가 다 속 였 어.
상례 에서 최대 실패 횟수 는 3, 즉 최대 3 번 의 시 도 를 하고 시간 초과 시간 은 30 초 이다.max_fails 의 기본 값 은 1, fail 입 니 다.timeout 의 기본 값 은 10s 입 니 다.전송 실패 한 경우 proxynext_upstream 또는 fastcginext_upstream 지정.그리고 proxy 를 사용 할 수 있 습 니 다.connect_timeout 과 proxyread_timeout 에서 upstream 응답 시간 을 제어 합 니 다.
error timeout invalid 라 고 쓰 여 있 습 니 다.header http_500;
        location ~ ^/report {
                proxy_http_version 1.1;
                proxy_set_header Connection "";
                proxy_set_header Host $host;
                proxy_pass              http://bdp-report-web;
                proxy_send_timeout    18000;
                proxy_read_timeout    18000;
                proxy_next_upstream     error timeout invalid_header http_500;
                proxy_connect_timeout 60s;
        }

좋은 웹페이지 즐겨찾기