I use the JMS two-point Jmeter sampler to test performance if a large number of JMS messages are sent to the queue.
Jmeter is currently creating a new QueueConnectionFactory and QueueConnection for each thread (according to the number of threads provided). I think this is not how it goes through an interface where a single factory connection handles different threads.
How to make sure that it creates only one connection for all threads? Is there any option in jmeter? Or should we change the code? It would be nice if someone could lead me in the right direction.
source share