On 4/3/12 4:20 PM, Arne Vajh?j wrote:
On 4/3/2012 2:19 PM, Daniel Pitts wrote:
I've been looking for load testing solutions, and there are quite a few
choices, many are expensive, some seem less than useful. So I'll ask
here.
What have you used in the past for load testing?
I'm specifically testing Java servlets, which request data from either
HTTP XML resources, or databases (primarily MySQL). The difficulty I
have is that setting up an entire environment for our system is not a
trivial task (large amounts of data, and very complex system). I have
three kinds of load testing I'd like to perform.
1. Failure mode testing. What happens when the downstream datasources
start to fail under load, what can be done to make that more graceful.
2. Capacity and scalability planing.
3. Performance tuning for individual requests.
2 and 3 we can glean /some/ useful information from our production
environment, but we don't want to test failures or cause failures in
production, obviously.
Obviously you need something to call the servlets.
There are commercial offerings like LoadRunner,
open source Apache JMeter, you can build something
yourself on top of Junit or Cactus, you can build
something yourself from scratch.
There is also apachebench for simple cases.
To be able to test #1 you need to be able to mock
the backend with something you can control responsiveness
for.
Yup, I've seen commercial products that do this (ParaSoft Virtualize is
one such thing). Though the license model doesn't really suit
small-scale load-testing.
We started working on our own home-grown solution, but if there are
other solutions to that problem, I'd love to know about them. We're most
interested in HTTP backend simulation, we don't need to worry so much
about the DB stuff, at least not for my team.
I would write the mock stuff myself. I would expect the specific
COTS solution.