https://issues.apache.org/bugzilla/show_bug.cgi?id=56961
--- Comment #1 from Sebb <[email protected]> --- (In reply to Flavio Cysne from comment #0) > 'Read random lines' defines if JMeter will read lines sequentially, if false > (default), from CSV file or randomly, if set to true. This parameter would > be a combination of the two parameters above. If 'Start from line' is set to > 0 or less then JMeter CSV reader will read a random line from CSV file for > its first thread. If 'Step by' is set to -1 (or any negative number, to > prevent errors) then a random line will be read from CSV file every time it > is required to. This is going to be expensive to implement, as it's not possible to skip to the start of a random line within a file. It's only possible to skip to a random byte in general. Far better to randomise the file before starting the test. -- You are receiving this mail because: You are the assignee for the bug.
