Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AWS - How my single EC2 micro instance can cross 750 hour limit?

I am new to AWS, my site is up and running since three weeks. While my billing shows:

Service      Month-to-date   actual usage   Month-end    forecasted usage   Free Tier usage limit
EC2 -Linux   750.00 Hrs      100.00%        930.00 Hrs   124.00%            750 Hrs

Also Amazon site states that:

750 hours of Amazon EC2 Linux t2.micro instance usage (1 GiB of memory and 32-bit and 64-bit platform support) – enough hours to run continuously each month*

While there can be maximum 31*24 = 744 hours in a month, so how can my single EC2 instance exceed the limit just in three weeks in terms of number of hours? Would appreciate any help to make me understand.

thank you.

like image 892
user1809095 Avatar asked Aug 25 '15 19:08

user1809095


People also ask

How much traffic can a micro instance handle?

micro can sustainably handle 10-15 concurrent users. More than that and it will start to deplete its CPU Credit balance.

Is there a limit on EC2 instances?

EC2 InstancesBy default, AWS has a limit of 20 instances per region. This includes all instances set up on your AWS account. To increase EC2 limits, request a higher limit by providing information about the new limit and regions where it should be applied.

How many EC2 Micro instances can I run free?

So you can only run one ec2 instance in the free tier. Micro instances are not free if your free tier is up or you exceeded 750 micro instance hours per month.

How many hours of EC2 instances do you get per month with the free tier?

Your free usage under the AWS Free Tier is calculated each month across all regions and automatically applied to your bill. For example, you will receive 750 Amazon EC2 Linux Micro Instance hours for free across all of the regions you use, not 750 hours per region.


1 Answers

The AWS Free Usage Tier provides particular services for free during the first 12 months of an AWS account.

Full details are available at: https://aws.amazon.com/free/

The free tier for Amazon EC2 provides 750 hours per month for a t2.micro Linux instance and 750 hours per month for a t2.micro Windows instance (but make sure you choose an AMI that is "free tier eligible").

These hours can be used by one instance running for the full month (31 days * 24 hours = 744 hours) or by multiple Amazon EC2 instances used during the month. Any hours in excess of the free tier will be charged at On-Demand prices (unless a Reserved Instance applies, or an instance is launched as a Spot instance).

If you have used more than 750 hours in a month, it would be because more than one instance was running. This includes instances running across all regions, so check whether instances have been run in other regions.

The AWS billing pages can provide details about which services have been used, and also provide a breakdown of usage of the Free Usage Tier.

like image 161
John Rotenstein Avatar answered Sep 27 '22 20:09

John Rotenstein