I have a loop controller in thread groups to read one csv file and i want to read all line in this csv file. I config my thread group as below:
- Loop Controller (4 times)
- Read csv file (Recycle on EOF: False, Stop thread on EOF: True, Sharing mode: All threads)
I run this scenario with a number of threads: 2
With first thread, read the first line of CSV file
With second thread, read the second line of CSV file
After each loop, i got data from CSV file is not changed, so how can i read each line of csv (from 3rd line,...) after the loop?