How can I post a chunk of data parallely and also have the device limitation with it in Jmeter

Viewed 9

I tried parallel controller in JMeter for parallelly posting data which seems working fine, but along with that I need to set the limit of devices also to which data will be posted. Please help here.

1 Answers
  1. Parallel Controller use cases are very specific, for example it's mainly used to mimic AJAX calls by overcoming JMeter's Thread Group limitation. Most probably you're looking for Synchronizing Timer? See A Comprehensive Guide to Using JMeter Timers for more information on this and other JMeter Timers

  2. It's totally unclear what you mean by set the limit of devices also to which data will be posted. Parallel Controller executes all its children in parallel. In addition there is Limit max threads number box, if you tick it - the Parallel Controller will execute its children in "chunks" of the size you define in the "Max threads" input field:

    enter image description here

Related