nginx upstream ip - hash 부하 균형 실현 (IP hash 요청)
typedef struct {
/* the round robin data must be first */
//
ngx_http_upstream_rr_peer_data_t rrp;
// hash
ngx_uint_t hash;
// IP ( ipv4 ipv6)
u_char addrlen;
//
u_char *addr;
//
u_char tries;
// upstream server
ngx_event_get_peer_pt get_rr_peer;
} ngx_http_upstream_ip_hash_peer_data_t
ip hash 처리 프로 세 스 1. ip hash 처리 설정 초기 화
static char *
ngx_http_upstream_ip_hash(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
{
ngx_http_upstream_srv_conf_t *uscf;
// upstream server
uscf = ngx_http_conf_get_module_srv_conf(cf, ngx_http_upstream_module);
if (uscf->peer.init_upstream) {
/* */
ngx_conf_log_error(NGX_LOG_WARN, cf, 0,
"load balancing method redefined");
}
/* upstream server */
uscf->peer.init_upstream = ngx_http_upstream_init_ip_hash;
/*
*/
uscf->flags = NGX_HTTP_UPSTREAM_CREATE
|NGX_HTTP_UPSTREAM_WEIGHT
|NGX_HTTP_UPSTREAM_MAX_CONNS
|NGX_HTTP_UPSTREAM_MAX_FAILS
|NGX_HTTP_UPSTREAM_FAIL_TIMEOUT
|NGX_HTTP_UPSTREAM_DOWN;
return NGX_CONF_OK;
}
static ngx_int_t
ngx_http_upstream_init_ip_hash(ngx_conf_t *cf, ngx_http_upstream_srv_conf_t *us)
{
// upstream server ( )
if (ngx_http_upstream_init_round_robin(cf, us) != NGX_OK) {
return NGX_ERROR;
}
/*
upstream server
*/
us->peer.init = ngx_http_upstream_init_ip_hash_peer;
return NGX_OK;
}
2. 설정 한 정보 에 따라 upstream server 연결 동작 이 발생 하기 전에 정 보 를 초기 화 합 니 다.
static ngx_int_t
ngx_http_upstream_init_ip_hash_peer(ngx_http_request_t *r,
ngx_http_upstream_srv_conf_t *us)
{
...
/* ip hash */
iphp = ngx_palloc(r->pool, sizeof(ngx_http_upstream_ip_hash_peer_data_t));
if (iphp == NULL) {
return NGX_ERROR;
}
/*
upstream server
*/
r->upstream->peer.data = &iphp->rrp;
/* ip hash upstream server */
if (ngx_http_upstream_init_round_robin_peer(r, us) != NGX_OK) {
return NGX_ERROR;
}
/* upstream server ip hash */
r->upstream->peer.get = ngx_http_upstream_get_ip_hash_peer;
switch (r->connection->sockaddr->sa_family) {
/* sa_family ip ipv4 ipv6 */
case AF_INET:
/* ipv4 ip */
sin = (struct sockaddr_in *) r->connection->sockaddr;
iphp->addr = (u_char *) &sin->sin_addr.s_addr;
iphp->addrlen = 3;
break;
#if (NGX_HAVE_INET6)
/* ipv6 ip */
case AF_INET6:
sin6 = (struct sockaddr_in6 *) r->connection->sockaddr;
iphp->addr = (u_char *) &sin6->sin6_addr.s6_addr;
iphp->addrlen = 16;
break;
#endif
default:
/* */
iphp->addr = ngx_http_upstream_ip_hash_pseudo_addr;
iphp->addrlen = 3;
}
/* ip 89*/
iphp->hash = 89;
iphp->tries = 0;
// upstream server
iphp->get_rr_peer = ngx_http_upstream_get_round_robin_peer;
return NGX_OK;
}
3. 요청 단의 ip 정보 에 따라 hash 규칙 을 만들어 upstream server 를 가 져 옵 니 다.
static ngx_int_t
ngx_http_upstream_get_ip_hash_peer(ngx_peer_connection_t *pc, void *data)
{
ngx_http_upstream_ip_hash_peer_data_t *iphp = data;
...
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, pc->log, 0,
"get ip hash peer, try: %ui", pc->tries);
/* TODO: cached */
/* upstream server */
ngx_http_upstream_rr_peers_wlock(iphp->rrp.peers);
/* 20 uostream server*/
if (iphp->tries > 20 || iphp->rrp.peers->single) {
ngx_http_upstream_rr_peers_unlock(iphp->rrp.peers);
// upstream server
return iphp->get_rr_peer(pc, &iphp->rrp);
}
now = ngx_time();
pc->cached = 0;
pc->connection = NULL;
// hash 89 hash
hash = iphp->hash;
for ( ;; ) {
for (i = 0; i < (ngx_uint_t) iphp->addrlen; i++) {
/* ip hash hash */
hash = (hash * 113 + iphp->addr[i]) % 6271;
}
// hash upstream server
w = hash % iphp->rrp.peers->total_weight;
// upstream server
peer = iphp->rrp.peers->peer;
p = 0;
while (w >= peer->weight) {
/*
upstream server*/
w -= peer->weight;
peer = peer->next;
p++;
}
/*
upstream server
*/
n = p / (8 * sizeof(uintptr_t));
m = (uintptr_t) 1 << p % (8 * sizeof(uintptr_t));
if (iphp->rrp.tried[n] & m) {
// upstream server
goto next;
}
ngx_log_debug2(NGX_LOG_DEBUG_HTTP, pc->log, 0,
"get ip hash peer, hash: %ui %04XL", p, (uint64_t) m);
if (peer->down) {
//upstream
goto next;
}
if (peer->max_fails
&& peer->fails >= peer->max_fails
&& now - peer->checked <= peer->fail_timeout)
{ /*
upstream server
*/
goto next;
}
if (peer->max_conns && peer->conns >= peer->max_conns) {
/*
*/
goto next;
}
break;
next:
if (++iphp->tries > 20) {
/* 20 upstream server*/
ngx_http_upstream_rr_peers_unlock(iphp->rrp.peers);
return iphp->get_rr_peer(pc, &iphp->rrp);
}
}
// upstream server upstream server
iphp->rrp.current = peer;
//
pc->sockaddr = peer->sockaddr;
pc->socklen = peer->socklen;
pc->name = &peer->name;
// uostream server
peer->conns++;
if (now - peer->checked > peer->fail_timeout) {
/*
*/
peer->checked = now;
}
// upstream server
ngx_http_upstream_rr_peers_unlock(iphp->rrp.peers);
/* */
iphp->rrp.tried[n] |= m;
// hash
iphp->hash = hash;
return NGX_OK;
}
여기에 실 현 된 랜 덤 방식 부하 균형 모듈 의 github 주소 nginx 랜 덤 부하 균형 을 추가 합 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단! Certbot을 사용하여 웹 사이트를 SSL(HTTPS)화하는 방법초보자가 인프라 주위를 정돈하는 것은 매우 어렵습니다. 이번은 사이트를 간단하게 SSL화(HTTP에서 HTTPS통신)로 변경하는 방법을 소개합니다! 이번에는 소프트웨어 시스템 Nginx CentOS7 의 환경에서 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.