How should I stress test / load test a client server application?

jkp picture jkp · Nov 7, 2008 · Viewed 9.9k times · Source

I develop a client-server style, database based system and I need to devise a way to stress / load test the system. Customers inevitably want to know such things as:

• How many clients can a server support?
• How many concurrent searches can a server support?
• How much data can we store in the database?
• Etc.

Key to all these questions is response time. We need to be able to measure how response time and performance degrades as new load is introduced so that we could for example, produce some kind of pretty graph we could throw at clients to give them an idea what kind of performance to expect with a given hardware configuration.

Right now we just put out fingers in the air and make educated guesses based on what we already know about the system from experience. As the product is put under more demanding conditions, this is proving to be inadequate for our needs going forward though.

I've been given the task of devising a method to get such answers in a meaningful way. I realise that this is not a question that anyone can answer definitively but I'm looking for suggestions about how people have gone about doing such work on their own systems.

One thing to note is that we have full access to our client API via the Python language (courtesy of SWIG) which is a lot easier to work with than C++ for this kind of work.

So there we go, I throw this to the floor: really interested to see what ideas you guys can come up with!

Answer

Robert Gould picture Robert Gould · Nov 7, 2008

Test 1: Connect and Disconnect clients like mad, to see how well you handle the init and end of sessions, and just how much your server will survive under spikes, also while doing this measure how many clients fail to connect. That is very important

Test 2: Connect clients and keep them logged on for say a week, doing random actions (FuzzTest). Time the round-trip of each action. Also keep record of the order of actions, because this way your "clients" will find loopholes in your usecases (very important, and VERY hard to test rationally).

Test 3 & 4: Determine major use cases for your system, and write up scripts that do these tasks. Then run several clients doing same task(test 3), and also several clients doing different tasks(test 4).

Series: Now the other dimension you need here is amount of clients. A nice series would be: 5,10,50,100,500,1000,5000,10000,...

This way you can get data for each series of tests with different work loads.

Also congrats on SWIGing your clients api to Python! That is a great way to get things ready.

Note: IBM has a sample of fuzz testing on Java, which is unrealted to your case, but will help you design a good fuzztest for your system