If you are creating 100 threads with zero latency in the ramp up you will have more than 20-30 http connection threads created in the server, plus the concurrency would be very high causing your Database and Application resources to be locked and/or access to be queued.
Whereas 10 threads with 10 iterations each would have lesser number of connections or threads on the web/app/db server because of lesser concurrency and the chances of resource contention (i,e locks) would be less. There is huge difference between these two types of tests. Your should consult your client and find out what type of test they want before your proceed. -Chaitanya M Bhatt http://www.performancecompetence.com On Fri, Nov 19, 2010 at 4:19 PM, cal0y <[email protected]>wrote: > > Good day, > > I have 10 accounts to use in load testing our application. I just want to > know if my Jmeter test will behave in the same manner if: > > 1. If i put 100 in the number of threads and a loop count of 1 > 2. If i put 10 in the number of threads and loop count of 10 > > Thanks! > > -- > View this message in context: > http://jmeter.512774.n5.nabble.com/Loop-Count-vs-Number-of-Threads-tp3272154p3272154.html > Sent from the JMeter - User mailing list archive at Nabble.com. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >

