Jim Albert wrote:
For the purposes of testing a heavy load situation, I'd like to
configure one of my apache web servers to intentionally respond slow to
a request.
Is anyone aware of some type of apache sleep or delay configuration that
will easily allow me to configure this? For example, te
On 10/22/07, Jim Albert <[EMAIL PROTECTED]> wrote:
> For the purposes of testing a heavy load situation, I'd like to
> configure one of my apache web servers to intentionally respond slow to
> a request.
>
> Is anyone aware of some type of apache sleep or delay configuration that
> will easily allo
Hi,
Try setting the KeepAlive On and with high KeepAliveTimeout value.You can
refer to Apache org docs for the above params.
Thanks
-A
On 10/23/07, Jim Albert <[EMAIL PROTECTED]> wrote:
>
> For the purposes of testing a heavy load situation, I'd like to
> configure one of my apache web servers to
On Mon, 22 Oct 2007 16:54:23 -0400
Jim Albert <[EMAIL PROTECTED]> wrote:
> For the purposes of testing a heavy load situation, I'd like to
> configure one of my apache web servers to intentionally respond slow
> to a request.
Don't know why everyone's proposing complex things here.
A simple CGI
Another idea in the same direction:
Use a RewriteMap on every request and have the
rewrite map do something ressuorce intensive.
...
RewriteEngine On
RewriteMapmymap prg:/tmp/tmp.pl
RewriteRule ^/(.*) ${mymap:$1}
And the map /tmp/tmp.pl:
#!/usr/bin/perl -w
use
On Oct 22, 2007, at 7:31 PM, Joshua Slive wrote:
On 10/22/07, Eric Covener <[EMAIL PROTECTED]> wrote:
On 10/22/07, Jim Albert <[EMAIL PROTECTED]> wrote:
For the purposes of testing a heavy load situation, I'd like to
configure one of my apache web servers to intentionally respond
slow to
a
On 10/22/07, Eric Covener <[EMAIL PROTECTED]> wrote:
> On 10/22/07, Jim Albert <[EMAIL PROTECTED]> wrote:
> > For the purposes of testing a heavy load situation, I'd like to
> > configure one of my apache web servers to intentionally respond slow to
> > a request.
>
> mod_ext_filter might help you
On 10/22/07, Jim Albert <[EMAIL PROTECTED]> wrote:
> For the purposes of testing a heavy load situation, I'd like to
> configure one of my apache web servers to intentionally respond slow to
> a request.
mod_ext_filter might help you simulate some of this by adding some
silly perl/php/python as an
Or if you are just benching a page like
http://www.yourdomain.com/test.html you could switch it to test.php
and have it do the sleep for you. Seems a little simple and I am not
sure it's what you are going for exactly.
On 10/22/07, Tom Hart <[EMAIL PROTECTED]> wrote:
> I don't know about anything
I don't know about anything in apache to do this, but there are a couple
other options that popped into mind, depending on what exactly you're
trying to test.
The first is netlimiter (http://www.netlimiter.com) that will let you
simulate network congestion/low bandwidth scenarios, with a littl
For the purposes of testing a heavy load situation, I'd like to
configure one of my apache web servers to intentionally respond slow to
a request.
Is anyone aware of some type of apache sleep or delay configuration that
will easily allow me to configure this? For example, tell apache to wait
11 matches
Mail list logo