JMeter Distributed Tests with Subordinate CSV Datasets

I would like to run a JMeter survey on our website, after manual . My tests are parameterized using the CSV DataSet configuration item to simulate various users. Now the question is: will JMeter use the same DataSet for each slave, or can I somehow configure each slave with its own data set? If this is the first case, the followers will steal each other, which, of course, is undesirable.

+3
source share
2 answers

Jmeter uses local CSV fields in distributed mode. This way, you simply place different files on each slave device, and it works. Nothing special.

+5
source

You can choose the behavior of CSV Data in sharing mode. Description of each option described in:

http://jmeter.apache.org/usermanual/component_reference.html#CSV_Data_Set_Config

+1
source

Source: https://habr.com/ru/post/1728916/


All Articles