Rows read from CSV are repeating #1252
sanath-Sunkad
started this conversation in
Artillery
Replies: 1 comment
-
hi @sanath-Sunkad 👋 Please see the explanation of The rows may be repeating because the order in which rows are picked is random, so with only 5 items it's likely that a row will be used more than once. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have 5 rows in each csv and I wanted them to be different row for each request and totally I have 7 POST request. If I am not wrong there will be 5 vusers created and all of them have to read a different rows from each csv. this is not happening. and total request has to be 35 if each of the vuser complete their scenario. So, how to make each request read different row of CSV sequential or non sequential.
http:
timeout: 60
phases:
- duration: 1
arrivalRate: 5
name: Warm up
payload:
-
path: "user.csv"
fields:
- "username"
- "password"
-
path: "auth.csv"
fields:
- "authusername"
- "authpassword"
-
path: "group.csv"
fields:
- "groupName"
- "groupDescription"
- "groupMnemonic"
Beta Was this translation helpful? Give feedback.
All reactions