What does amazon aws mean by "network performance"?

PerformanceNetworkingAmazon Web-ServicesAmazon

Performance Problem Overview


When choosing an amazon aws instance type to launch, there is a property of each type which is "Network Performance" which is either "Low", "Moderate", or "High". I'm wondering what this exactly means. Will my ping be lower if I choose low? Or will it be ok as long as many users aren't logged in at once?

I'm launching a real time multiplayer game and I am so I am curious as to exactly what is meant under "network performance". I actually need fairly low memory and processing power, but instances with those criteria usually have "low" network performance.

Has anyone experience with the different network performances or have more information?

Thanks!

Performance Solutions


Solution 1 - Performance

It's not oficial, but Serhiy Topchiy did a benchmark with different instance types:

http://epamcloud.blogspot.com.br/2013/03/testing-amazon-ec2-network-speed.html

For US-EAST-1, it seems that LOW corresponds to 50Mb/s, Moderate corresponds to 300Mb/s and High corresponds to 1Gb/s.

Solution 2 - Performance

My recent experience here: https://serverfault.com/questions/1094608/benchmarking-aws-outbound-internet-bandwidth-egress-up-to-25-gbps

We ran a live video broadcast on two AWS EC2 servers, hosting 500 viewers, that degraded catastrophically after 10 minutes.

We reproduced the outbound bandwidth throttling with iperf (see link above).

Solution 3 - Performance

I believe it was mentioned at the reInvent 2013 conference that the different properties are related to the underlying network connection: Some servers have 10GB connections (High) some have 1GB (Moderate) and some have 100MB (Low).

I cannot find any on-line documentation to confirm this, however.

Edit: There is an interesting article on Packet per second limit available here

Since this question was first posed, AWS has released more information on the networking stack, and many of the newer instance families can support up to 25Gbps with the appropriate ENA drivers. It looks like much of the increased performance is due to the new Nitro system.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDanielView Question on Stackoverflow
Solution 1 - PerformancebarboloView Answer on Stackoverflow
Solution 2 - PerformanceEricView Answer on Stackoverflow
Solution 3 - PerformancechrisView Answer on Stackoverflow