Welcome! Log In Create A New Profile

Advanced

Re: Nginx TCP Delays

Maxim Dounin
September 21, 2009 04:50AM
Hello!

On Sun, Sep 20, 2009 at 10:47:21PM -0700, Khalid Shaikh wrote:

> We are using Nginx on this web server. Look at the # of reading & writing
> requests. a curl http://localhost/test.html can take up to 45 seconds.
> Can anyone help?
>
> Using telnet I can see that basically the Nginx server is taking time to get
> to the TCP connection that I initiated.
>
> This happens only during peak times of the web site.

Looks like either nginx has no CPU time due to fastcgi sitting on
the same machine, or nginx workers are blocked on disk. You may find
out actual reason by examining state of nginx worker processes in
top.

If the problem is CPU time you shuld just add some to nginx, e.g.
by using worker_priority directive. Reducing load on fastcgi
(e.g. by using fastcgi_cache) may help too.

If the problem is disk load, you may try the following:

1. Set sendfile_max_chunk to something like 128k or 256k. This
should prevent fast clients from blocking nginx in sendfile() for
too long.

2. Don't use sendfile at all and use small number of big
output_buffers (e.g. output_buffers 1 256k;). This should reduce
number of disk accesses (and seeks) at cost of not using
sendfile() - e.g. some additional CPU usage.

3. If fastcgi returns big responses that are buffered to disk, try
raising fastcgi_buffers and/or setting fastcgi_max_temp_file_size
0;. This should prevent nginx from going to disk at cost of not
releasing fastcgi connection as early as possible. Also you
should consider finding the source of such responses and using
X-Accel-Redirect instead if it's possible.

4. Consider using aio. Though aio on Linux isn't something
generally usable, but it may help anyway. Note that some bugs may
be still here, it's expiremental feature.

Maxim Dounin

>
> Active connections: 8467
> server accepts handled requests
> 380771 380771 835836
> Reading: 75 Writing: 1497 Waiting: 6895
> http://67.159.60.59/status 45.03 seconds
>
> I've attached the nginx.conf
>
> user www-data www-data;
> worker_processes 32;
>
> error_log /var/www/log/nginx_error.log;
> pid /var/run/nginx.pid;
>
> events {
> worker_connections 10024;
> }
>
> http {
> include /etc/nginx/mime.types;
> default_type application/octet-stream;
>
> sendfile on;
> tcp_nopush on;
> tcp_nodelay on;
>
> server {
> listen 80;
> server_name xs.to;
> root /var/www/xs;
> error_page 404 index.php;
> error_page 500 502 503 504 index.php;
> access_log off;
>
> location / {
> root /var/www/xs;
> index index.php default.php;
> rewrite ^/albums/(.*)$ /albums/showalbum.php?$1? last;
> rewrite ^/community/(.*)$ /community.php?$1? last;
> error_page 404 index.php;
> error_page 500 502 503 504 index.php;
> }
>
> location /status {
> stub_status on;
> access_log off;
> }
>
> location ~ .php$ {
> fastcgi_pass 127.0.0.1:8888;
> fastcgi_index index.php;
> fastcgi_intercept_errors on;
> error_page 404 index.php;
> error_page 500 502 503 504 index.php;
> fastcgi_param SCRIPT_FILENAME /var/www/xs/$fastcgi_script_name;
> include /etc/nginx/fastcgi_params;
> }
>
> location ~* ^.+.(jpg|jpeg|gif|tiff|png|bmp|ico|fav|html)$ {
> access_log off;
> expires 30d;
> }
> }
Subject Author Posted

Nginx TCP Delays

Khalid Shaikh September 21, 2009 01:52AM

RE: Nginx TCP Delays

Brian Henson September 21, 2009 03:38AM

Re: Nginx TCP Delays

Khalid Shaikh September 21, 2009 03:46AM

Re: Nginx TCP Delays

François Battail September 21, 2009 04:06AM

Re: Nginx TCP Delays

Khalid Shaikh September 21, 2009 04:22AM

Re: Nginx TCP Delays

Khalid Shaikh September 21, 2009 04:24AM

Re: Nginx TCP Delays

François Battail September 21, 2009 04:58AM

Re: Nginx TCP Delays

Khalid Shaikh September 21, 2009 12:08PM

Re: Nginx TCP Delays

Avleen Vig September 23, 2009 04:52AM

Re: Nginx TCP Delays

François Battail September 23, 2009 11:22AM

Re: Nginx TCP Delays

Christopher Smith September 24, 2009 03:50AM

Re: Nginx TCP Delays

Khalid Shaikh September 24, 2009 11:22AM

Re: Nginx TCP Delays

icqheretic October 05, 2009 03:09PM

Re: Nginx TCP Delays

anomalizer October 03, 2009 03:34AM

Re: Nginx TCP Delays

Maxim Dounin September 21, 2009 04:50AM

Re: Nginx TCP Delays

Khalid Shaikh September 21, 2009 04:58AM

Re: Nginx TCP Delays

Khalid Shaikh September 21, 2009 12:32PM

Re: Nginx TCP Delays

Maxim Dounin September 21, 2009 12:52PM

Re: Nginx TCP Delays

Khalid Shaikh September 21, 2009 02:08PM

Re: Nginx TCP Delays

Khalid Shaikh September 21, 2009 03:44PM

Re: Nginx TCP Delays

Khalid Shaikh September 22, 2009 12:30AM

Re: Nginx TCP Delays

Payam Chychi September 22, 2009 02:24AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 300
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready