Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which Amazon EC2 Instance to use?

I want to setup a proxy (using Squid) that will take ~ 5000 requests per day on an Amazon EC2 instance. Will there be a noticeable difference in speed between a micro vs small instance?

The requests are for HTML, not for any media like images or videos.

like image 591
bgcode Avatar asked Feb 23 '23 08:02

bgcode


2 Answers

I would advice you to start with ebs (not instance-store) micro instance. Later you will be able to convert micro to small.

Besides if you are planing to use the instance during for long time (more than one year) just think about purchasing reserved instance (you will save some money). But before you reserve instance you must definitely know what is better for you micro or small.

Good luck!

like image 37
Alex Koloskov Avatar answered Mar 04 '23 01:03

Alex Koloskov


Micro instances main issue is spotty CPU and disk I/O performance, but that amount of traffic is actually quite small, averaging 3 requests a minute. As a bonus, a micro instance will qualify for Amazon's free tier. For optimal performance, make sure the machine is stripped down of unnecessary services.

like image 190
Daniel Lopez Avatar answered Mar 04 '23 01:03

Daniel Lopez