Reputation: 1759
I have a jmeter script that tests login flow for different users. I use csv option to read username and password. But aws distributed load testing doesn't allow me to do so .What can I do to load test?
Upvotes: 0
Views: 555
Reputation: 168157
You need to copy the CSV file to all JMeter Slave machines, as per documentation:
If the test uses any data files, note that these are not sent across by the client so make sure that these are available in the appropriate directory on each server.
If for some reason you cannot do this you will have to consider alternative solutions so all slaves would be able to get the credentials from a centralized storage, available options are in:
Upvotes: 1