Calculate TPS - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T01:18:34Z http://stackoverflow.com/feeds/question/166354 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/166354/calculate-tps 1 Calculate TPS Phani 2008-10-03T11:06:13Z 2008-10-03T14:10:00Z <p>Hi,</p> <p>I have a the following scenarios. I am trying to calculate throughput of the java's XSLT transformer. I have 10 threrads, each iterates 1000 times. The task of the thread is to read the XML and XSLT file and trasnform it and write to a new file. </p> <p>I want to calculate the TPS. Can you please suggest the way to calculate TPS?</p> <p>Thanks and Regards,</p> <p>Phani.</p> http://stackoverflow.com/questions/166354/calculate-tps/167060#167060 1 Answer by Alex Miller for Calculate TPS Alex Miller 2008-10-03T14:10:00Z 2008-10-03T14:10:00Z <p>Well, you want to start a timer at the beginning and stop it when all threads complete. That gives you elapsed time = end time - begin time. Transactions = 10 threads * 1000 iterations = 10000. TPS = 10000 / elapsed time. </p> <p>The easiest way to do this kind of timing is with a CyclicBarrier. Here's a good writeup of using a barrier action with a CyclicBarrier as a timer (see last example):</p> <ul> <li><a href="http://tech.puredanger.com/2007/11/11/thread-coord/" rel="nofollow">http://tech.puredanger.com/2007/11/11/thread-coord/</a></li> </ul> <p>My final caveat would be that benchmarking something like this is fraught with peril. Some suggestions:</p> <ul> <li>Run more than 1000 iterations. You need to let hotspot warm up. Preferably you should let the test run at least 10 minutes.</li> <li>Don't discount GC times. You need to be aware of what GC you're using and how its pause times are affecting your results. Running with -verbose:gc at least a few times is extremely valuable. See here for more: <a href="http://java.sun.com/developer/technicalArticles/Programming/GCPortal/" rel="nofollow">http://java.sun.com/developer/technicalArticles/Programming/GCPortal/</a></li> <li>Run multiple repetitions in the same process until you see repeatable results.</li> <li>Do many runs until you believe the numbers are consistent.</li> </ul>