You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
apib today (like ab) does a single DNS lookup at the start of processing, regardless of the number of connections.
This is fine for most servers but for DNS-based load balancing services such as Amazon ELB, performance is not as good as it should be.
Instead, we should experiment with doing a DNS lookup for each concurrent connection, or even with doing a DNS lookup periodically when opening a new connection. This will better help us test the highly variable throughput produced by ELB.
The text was updated successfully, but these errors were encountered:
apib today (like ab) does a single DNS lookup at the start of processing, regardless of the number of connections.
This is fine for most servers but for DNS-based load balancing services such as Amazon ELB, performance is not as good as it should be.
Instead, we should experiment with doing a DNS lookup for each concurrent connection, or even with doing a DNS lookup periodically when opening a new connection. This will better help us test the highly variable throughput produced by ELB.
The text was updated successfully, but these errors were encountered: