ПРОЕКТЫ 


  АРХИВ 


Apache-Talk @lexa.ru 

Inet-Admins @info.east.ru 

Filmscanners @halftone.co.uk 

Security-alerts @yandex-team.ru 

nginx-ru @sysoev.ru 


  СТАТЬИ 


  ПЕРСОНАЛЬНОЕ 


  ПРОГРАММЫ 



ПИШИТЕ
ПИСЬМА












     АРХИВ :: nginx-ru
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Течет память при проксировании


  • To: "nginx-ru@xxxxxxxxx" <nginx-ru@xxxxxxxxx>
  • Subject: Течет память при проксировании
  • From: Denis F. Latypoff <latypoff@xxxxxxxxx>
  • Date: Sat, 26 May 2012 22:44:55 +0700
  • Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1338047095; bh=h7JGcTDyk7YDYjLWhcuIUGpREm/Clh8Z5yVR4KZNdXg=; h=From:To:Subject:MIME-Version:Message-Id:Date: Content-Transfer-Encoding:Content-Type; b=K040ZeejLWmB+ZsqYGLUFCLEK8n30/yURlhXCvAPG/j1WjxhoYg1tkQeniVINhcyP S5Fzp5ZwteQWR/3l34oLQUP1MgLZX4+fOyM7+87lVX+sTRvRLOdsYg0IHuIntP8PMo ySG0x7UsQwmqbGIXIGz7RGOmIB7moGjb3OQYy2os=
  • Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1338047095; bh=h7JGcTDyk7YDYjLWhcuIUGpREm/Clh8Z5yVR4KZNdXg=; h=From:To:Subject:MIME-Version:Message-Id:Date: Content-Transfer-Encoding:Content-Type; b=K040ZeejLWmB+ZsqYGLUFCLEK8n30/yURlhXCvAPG/j1WjxhoYg1tkQeniVINhcyP S5Fzp5ZwteQWR/3l34oLQUP1MgLZX4+fOyM7+87lVX+sTRvRLOdsYg0IHuIntP8PMo ySG0x7UsQwmqbGIXIGz7RGOmIB7moGjb3OQYy2os=

Приветствую.   Пробовал   1.2.0   и   1.3.0,   вот  на  таком  трафике
http://s12.postimage.org/64ix4e8vf/localhost_nginx_request_week.png
процессы  растут  с  70мб  до  1гб  (RSS)  за  сутки.  Трафик  генерит
самописный  клиент  с  другого  сервера. Keepalive'а нет. Nginx только
проксирует,  бекенд  отдает  очень  короткий  ответ  (байт  200-300  с
заголовками). Этот клиент обязательно дожидается ответа, только потом
закрывает соединение сам. Конфиг такой:

user                    nobody nobody;
worker_processes        2;
worker_rlimit_nofile    1000000;
worker_rlimit_core      100M;
working_directory       /tmp;
error_log               logs/error.log  warn;

events {
    worker_connections  32768;
    accept_mutex        off;
}

http {

    include                     mime.types;
    default_type                application/octet-stream;
    sendfile                    on;
    tcp_nopush                  on;
    reset_timedout_connection   on;
    log_not_found               off;
    server_tokens               off;
    server_name_in_redirect     off;
    recursive_error_pages       on;

    proxy_ignore_client_abort   on;
    proxy_intercept_errors      on;
    proxy_connect_timeout       600;
    proxy_read_timeout          600;
    proxy_send_timeout          600;
    send_timeout                600;
    client_header_timeout       600;
    keepalive_timeout           75 20;

    gzip                on;
    gzip_proxied        any;
    gzip_min_length     0;
    gzip_types          text/css
                        text/xml
                        text/plain
                        text/javascript
                        image/x-ms-bmp
                        application/xml
                        application/x-javascript;

    geoip_city     /usr/share/GeoIP/GeoIPCity.dat   utf8;
    geoip_org      /usr/share/GeoIP/GeoIPASNum.dat  utf8;

    upstream upstream_counter {
        server    127.0.0.1:8090;
    }

    server {

    listen      80;
    server_name NAME;

    access_log  off;
    error_log   logs/error.log warn;
    root        /root;
    charset     utf-8;

    location = /i/1x1.gif {
        empty_gif;
    }

    location = /0.gif {
        limit_except            GET { deny all; }
        set_real_ip_from        XXX;
        error_page              502 =200 /i/1x1.gif;
        error_page              503 =200 /i/1x1.gif;
        error_page              504 =200 /i/1x1.gif;
        error_page              404 =200 /i/1x1.gif;
        proxy_pass              http://upstream_counter;
        proxy_set_header        Host               $host;
        proxy_set_header        X-Real-IP          $remote_addr;
        proxy_set_header        GeoIP-Country-Code $geoip_city_country_code;
        proxy_set_header        GeoIP-Region-Name  $geoip_region_name;
        proxy_set_header        GeoIP-City         $geoip_city;
        proxy_set_header        GeoIP-Coords      
'$geoip_latitude:$geoip_longitude';
        proxy_set_header        GeoIP-ISP          $geoip_org;
    }

    location / {
        return 444;
    }
}

-- 
br, Denis F. Latypoff.

_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru


 




Copyright © Lexa Software, 1996-2009.