Large AWS Regional Data Transfer cost; ELB to blame

amazon ec2load balancing

Recently an AWS account I'm handling has seen a large increase in the Regional Data Transfer cost. Inspecting the usage / bill details reveals this is down to an increase in "ELB data" being processed and "Regional Data Transfer".

All the instances are in the same availability zone, so the issue must be the load balancers. There are 2 ELBs for internet-facing traffic and 2 ELBs for internal traffic, however looking at the console I can see all 4 are Classic ELBs talking to instances inside EC2-Classic rather than a VPC.

Because of this, the 2 "internal" ELBs are being referenced by a DNS name in the form ELB-Name-loadbalancer-xxxxxxx.eu-west-1.elb.amazonaws.com, rather than the Internal-loadbalancer-xxxxxxx.eu-west-1.elb.amazonaws.com created with internal ELBs.

Presumably these DNS records resolve to public IPs, and would therefore incur the data-transfer cost? If this is the case, variations in the TTL could theoretically cause the cost variations I'm seeing.

Can anyone confirm if this is correct or if I'm mistaken (and if so, what else I could do to help trace the problem)?

EDIT: Here's a chart of what I'm seeing:

enter image description here

While data in/out is flat, ELB data & Regional transfer are increasing like crazy. Interestingly ELB data is roughly half of the regional data transfer, so I think that would correlate with my guess that the ELB traffic is getting charged in/out. Unfortunately I have no idea what's causing the actual increase in the ELB data itself.

Best Answer

Your suspicion is correct.

If you communicate between instances using public or elastic IP address even in the same region you pay regional data transfer rates (0.01$ per GB in/out):

Public and Elastic IP and Elastic Load Balancing Data Transfer

$0.01 per GB in/out – If you choose to communicate using your Public or Elastic IP address or Elastic Load Balancer inside of the Amazon EC2 network, you’ll pay Regional Data Transfer rates even if the instances are in the same Availability Zone. For data transfer within the same Availability Zone, you can easily avoid this charge (and get better network performance) by using your private IP whenever possible.

As stated in the EC2 FAQ: If I transfer data between Availability Zones using public IP addresses, will I be charged twice for Regional Data Transfer (once because it’s across zones, and a second time because I’m using public IP addresses)?.

The solution is to always "use the internal address when you are communicating between Amazon EC2 instances [which] ensures that your network traffic follows the highest bandwidth, lowest cost, and lowest latency path through our network".

Related Topic