I have large CSV file of 20000 records and i want to iterate through CSV in such a way that each thread picks up each row of CSV file. I am planning to use this for performance test for our backend API so i would appreciate if someone can tell me the correct approach of setting up threadgroup and CSV dataset config for my scenario.
line1 - ThreadGroup 1-1
line2 - ThreadGroup 1-2
line3 - ThreadGroup 1-3
so on..
After doing some reading i learned that Number of Threads = Number of rows in CSV but i don't want to hardcode Number of Threads (users).
So far this is my implementation but it is not working properly as the second row of CSV is not getting picked up by Thread Group 1-2 but instead it is getting picked by Thread Group 1-1


