Varghese John
Varghese John

Reputation: 101

Feeder strategy in Gatling

I just tried implementing the below strategy to feed values from a CSV feeder in Gatling.

  1. val csvFeeder = csv("data/Pet1.csv").batch.circular
  2. val csvFeeder = csv("data/Pet1.csv").circular

Both seem to work fine. When do we use ".batch.circular" instead of ".circular" as the feeding strategy in Gatling.

Thanks for the help.

Upvotes: 1

Views: 545

Answers (1)

Stéphane LANDELLE
Stéphane LANDELLE

Reputation: 6623

Please read the documentation about the differences between default adaptive, eager and batch feeder loading modes.

Upvotes: 1

Related Questions