Re: Rate limiting intervals

2014-01-18 Thread PieterVI
Hi Valentin, Thanks for the info. That indeed does seem to work as you mention. I have to figure out what else is going wrong then. Thanks, Pieter Posted at Nginx Forum: http://forum.nginx.org/read.php?2,246575,246583#msg-246583 ___ nginx mailing lis

Re: Rate limiting intervals

2014-01-17 Thread PieterVI
Hi Valentin, I know that 100r/s is equal to 1 request per 10 milliseconds. If you specifiy 100r/s nginx will send 100 requests within the first milliseconds of a certain second. Once these request are done no request will be handled anymore. When you would be able to specifiy more granular rate

Rate limiting intervals

2014-01-17 Thread PieterVI
Hello, With the rate limiting module you can easily rate limit based on seconds or on minutes. What I would like to do however is rate limit based on a 100 millisecond or 10 millisecond interval. That way you do not have a burst of requests at the beginning of a second. But a more continuous flow

Nginx lua capture_multi fire and forget

2013-10-23 Thread PieterVI
Hi all, We're currently using the lua capture_multi to send production request to test systems. And sometimes we also kind of 'fork' these request to multiple test systems. But if one of the test systems is slow to respond the lua code waits till it gets all responses. And this is something we ac