EC2 c7gn instances degrade in network performance throughput

0

At some point c7gn( large type ) instances start degrading network throughput, so data transferring is throttled, and even scp a small file to a server stop working.( Instance is in use for WS connection). Based on instance monitoring tab it looks like only showing that instance already has been affected by some throttling based on network out bytes/network out packets charts. I assume there is some cap for network usage for some instances in units( like for small instances for CPU and Memory ). If it is true where can i find network units usage for the instance ? and how to check how much quote already has been used ?

max
asked 3 months ago163 views
1 Answer
0

You can refer to Compute optimized instances documentation about network performance. As per the table, c7gn.large is indicated with a †, i.e. it has a baseline bandwidth and can use a network I/O credit mechanism to burst beyond their baseline bandwidth on a best effort basis. For more information, refer to Amazon EC2 instance network bandwidth

>aws ec2 describe-instance-types --filters "Name=instance-type,Values=c7gn.large" --query "InstanceTypes[].[InstanceType, NetworkInfo.NetworkPerformance, NetworkInfo.NetworkCards[0].BaselineBandwidthInGbps]" --output table --region us-east-1
--------------------------------------------
|           DescribeInstanceTypes          |
+-------------+--------------------+-------+
|  c7gn.large |  Up to 30 Gigabit  |  6.25 |
+-------------+--------------------+-------+

You can use CloudWatch as per Collect network performance metrics to monitor network metrics that may exceed maximum allowed

AWS
EXPERT
Mike_L
answered 3 months ago
profile picture
EXPERT
Kallu
reviewed 3 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions