Reputation: 99
Error preloading the connection pool while running sql statement in Jmeter.
I am using below env:
pfa jdbc connection,jdbc_request,request,response_data,sampler_result screenshots
Upvotes: 4
Views: 10994
Reputation: 58774
I had a similar question when even 10 max connection settings in oracle caused errors. I suggest you use 0
value in JDBC's Maximum number of connections as recommended in JMeter JDBC manual:
Maximum number of connections allowed in the pool. In most cases, set this to zero (0).This means that each thread will get its own pool with a single connection in it, i.e. the connections are not shared between threads.
Upvotes: 5