Packets-per-second limits in EC2

Packets-per-second limits in EC2

  • April 28, 2019
Table of Contents

Packets-per-second limits in EC2

While evaluating the performance of a server application, we eventually (and hopefully) run up against the most fundamental constraining factor: the network. Cloud providers tend to offer somewhat handwavy guidance on networking constraints, especially when compared to the exhaustive literature explaining the quotas for RAM, CPU, and I/O. While working on an unrelated stress test in EC2, we were surprised by some results that led us down the path of investigating EC2 network capacity claims, resulting in this writeup. EC2 documentation describes network performance in terms of maximum available bandwidth.

Instances using Enhanced Networking can have bandwidth up to 25 Gbit /s. This is great news for a video streaming service, but what does this maximum bandwidth mean for a transactional application, such as an HTTP server?

Do we add up all payload and protocol overhead to see if fits the bandwidth budget? To answer this question, we have to look at how lower level protocolsâlike TCP and IPâhandle HTTP transactions.

Source: stressgrid.com

Share :
comments powered by Disqus

Related Posts

Moving from Kube2Iam to Kiam

Moving from Kube2Iam to Kiam

At Ibotta, we chose kube2iam to assign AWS IAM Roles to containers running in our Kubernetes cluster. Lately, we’ve run into some issues with it—specifically when running a job that scores all of our service repos. This spins up a number of pods in parallel and has often failed to correctly access roles.

Read More