<div dir="ltr">Hi,<div><br></div><div>   There are some tweaks required to nginx configurations. If the same image which usually takes second to response can takes upto 10-20 seconds to load, the wide guess would be exceeding concurrent connections at peak traffic. The directive worker_rlimit_nofile value is set much lower as compare to worker_connections. Nginx uses upto 2 file descriptors per connections, so i would suggest to increase worker_rlimit_nofile value to <span style="font-size:12.8000001907349px">124000. <br></span><br>Also, default keepalive_timeout value is 65sec due to which your current nginx configuration is not optimized to serve more than 2000 concurrent connections. Here's how :<br><br>(Worker_process)4 * <span style="font-size:12.8000001907349px">32768(worker_connections) / 65(Keepalive_timeout == 2016 connections per seconds.<br></span><br>So i would suggest to decrease keepalive_timeout to 5sec directive and increase worker_connections to 60000.<br><br>Also make sure to decrease timeout values.<br><br>Regards.</div><div>Shahzaib<br><br><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, May 7, 2015 at 10:56 PM, grigory <span dir="ltr"><<a href="mailto:nginx-forum@nginx.us" target="_blank">nginx-forum@nginx.us</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Francis,<br>
<span class=""><br>
> Can you tell from nginx logs whether the slowness is due to<br>
> slow-read-from-disk, or slow-write-to-client, or something else?<br>
<br>
</span>Could you please tell me how to check this out?<br>
My nginx logs do not contain this sort of information.<br>
<span class=""><br>
> Can you find any pattern in the requests which respond more slowly than<br>
> you want? Certain browsers, certain times of day, anything like that?<br>
<br>
</span>Unfortunately, I didn't find any pattern. It's just sometimes loads in 2<br>
seconds and in another time -- in 10-15 seconds. I mean same 300KB image<br>
within a couple of refreshes in a browser. I've tested the problem on<br>
different browsers and different times of day -- no luck.<br>
<span class=""><br>
> If you make the request from the machine itself, so network issues should<br>
> be minor, does it still show sometimes being slow?<br>
<br>
</span>When I make request from machine itself, the image loads pretty fast.<br>
<br>
Posted at Nginx Forum: <a href="http://forum.nginx.org/read.php?2,258372,258730#msg-258730" target="_blank">http://forum.nginx.org/read.php?2,258372,258730#msg-258730</a><br>
<div class="HOEnZb"><div class="h5"><br>
_______________________________________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a><br>
</div></div></blockquote></div><br></div>