Hi guys,I wrote a simple test for commons-pool. The result shows that the performance drops dramatically when concurrent threads increase. e.g, With 50 threads, the throughput is 603326 transactions per second, when threads increase to 600, the throughput drops to 32797. The diagram below is the response time in milliseconds, you can see as the threads increase, the response time grows quickly.I guess my benchmark test code must have something wrong, could you guys help me review the test code below and figure out what's wrong with my test code?public class BenchmarkCommons {public BenchmarkCommons(int workerCount, int loop) throws Exception {double[] statsAvgRespTime = new double[workerCount];CountDownLatch latch = new CountDownLatch(workerCount);GenericObjectPool pool = new GenericObjectPool(new PoolableObjectFactory() {@Overridepublic Object makeObject() throws Exception {return new StringBuilder();}@Overridepublic void destroyObject(Object o) throws Exception {}@Overridepublic boolean validateObject(Object o) {return true;}@Overridepublic void activateObject(Object o) throws Exception {}@Overridepublic void passivateObject(Object o) throws Exception {}});pool.setMinIdle(25);pool.setMaxIdle(50);pool.setMaxActive(50);Worker[] workers = new Worker[workerCount];for (int i = 0; i < workerCount; i++) {workers[i] = new Worker(i, pool, latch, loop, statsAvgRespTime);}long t1 = System.currentTimeMillis();for (int i = 0; i < workerCount; i++) {workers[i].start();}latch.await();long t2 = System.currentTimeMillis();double stats = 0;for (int i = 0; i < workerCount; i++) {stats += statsAvgRespTime[i];}System.out.println("Average Response Time:" + new DecimalFormat("0").format(stats / workerCount));System.out.println("Average Througput Per Second:" + new DecimalFormat("0").format(( (double) loop * workerCount * 1000 ) / (t2 - t1) ));}private static class Worker extends Thread {private final int id;private final GenericObjectPool pool;private final CountDownLatch latch;private final int loop;private final double[] statsAvgRespTime;public Worker(int id, GenericObjectPool pool, CountDownLatch latch, int loop, double[] statsAvgRespTime) {this.id = id;this.pool = pool;this.latch = latch;this.loop = loop;this.statsAvgRespTime = statsAvgRespTime;}@Override public void run() {long t1 = System.currentTimeMillis();for (int i = 0; i < loop; i++) {StringBuilder obj = null;try {obj = (StringBuilder) pool.borrowObject();obj.append("x");} catch (Exception e) {e.printStackTrace();} finally {if (obj != null) {try {pool.returnObject(obj);} catch (Exception e) {e.printStackTrace();}}}}long t2 = System.currentTimeMillis();statsAvgRespTime[id] = ((double) (t2 - t1)) / loop;latch.countDown();}}public static void main(String[] args) throws Exception {System.out.println("-----------warm up------------");new BenchmarkCommons(50, 100);System.out.println("------------Apache commons pool test-----------");new BenchmarkCommons(50, 500000);new BenchmarkCommons(100, 500000);new BenchmarkCommons(150, 300000);new BenchmarkCommons(200, 300000);new BenchmarkCommons(250, 100000);new BenchmarkCommons(300, 100000);new BenchmarkCommons(350, 50000);new BenchmarkCommons(400, 50000);new BenchmarkCommons(450, 20000);new BenchmarkCommons(500, 20000);new BenchmarkCommons(550, 10000);new BenchmarkCommons(600, 10000);}}Regards,
Daniel Wu
- commons pool benchmark issue Daniel Wu
- Re: commons pool benchmark issue Phil Steitz
- Re: commons pool benchmark issue Daniel Wu
- Re: commons pool benchmark issue Phil Steitz
- Re: commons pool benchmark issue Daniel Wu
- Re: commons pool benchmark issue Phil Steitz
- Re: commons pool benchmark issue Daniel Wu
- Re: commons pool benchmark issue Mark Thomas
- Re: commons pool benchmark issue Daniel Wu
- Re: commons pool benchmark issu... James Carman
- Re: commons pool benchmark issu... Mark Thomas