Reputation: 61
I have a jmeter test plan file with following structure
My aim is to do SFTP get with different username and password that run in parallel using parallel controller. The username and password are stored in a CSV.
How to achieve this? as far as I know the parallel controller won't loop a csv sequentially like a common thread group so I can't store the username and password into variable then use it in my parallel controller. Thanks in advance
Upvotes: 0
Views: 208
Reputation: 168147
I fail to see why you would need the Parallel Controller, if you want to execute SFTP requests concurrently just add more threads in the Thread Group.
If you want to run single request by multiple users at exactly the same moment - take a look at Synchronizing Timer
Upvotes: 0