hi.
after a couple of weeks of load testing with Gatling (really awesome tool … thanks so much for making this available) we ran into an issue with the ELB.
we think the issue is as described here: “Best Practices in Evaluating Elastic Load Balancing” (AWS Articles)
DNS Resolution
If clients do not re-resolve the DNS at least once per minute, then the new resources Elastic Load Balancing adds to DNS will not be used by clients.
This can mean that clients continue to overwhelm a small portion of the allocated Elastic Load Balancing resources, while overall Elastic Load Balancing is not being heavily utilized.
This is not a problem that can occur in real-world scenarios, but it is a likely problem for load testing tools that do not offer the control needed to ensure that clients are re-resolving DNS frequently.
So we used jnettop on the Gatling server and saw that during the load test every 60 seconds or so the IP address changed to one of the available ip addresses provided by the ELB DNS entry.
But Gatling never used all of the available IP addresses during the load test.
Is there a way to use Gatling for load testing and application “behind” Amazon’s ELB?
Thanks a bunch.
Michael