I need to do something like this:
foreach user in a users.csv:
foreach data in data.csv:
send http request
I've took a look on this post and on this page
However, as far I've been to figure out, it's NOT performed in parallel. So, it's not posible to simulate for example that during 10 minutes the users are loading data progressively.
So, I'd like each user is a thread and then each user perform an HTTP request as many data is in data.csv file. By this way, I figure out it's easiest to perform these kind of tests on several jmeter servers.
Any ideas?
