Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is amazon EC2 micro instance enough for simple node.js and redis setup?

I'm developing a very simple portfolio web site. It will most likely barely have any traffic. I want to use node.js and redis for the backend of the application.

Since amazon ec2 has 1 year free of micro instance, I was wondering if it will be good enough to host both redis and node.js on it.

As I said the site will be very lightweight and not accessed frequently.

Thanks!

like image 792
Radi Radichev Avatar asked Mar 29 '13 15:03

Radi Radichev


2 Answers

The specs from Amazon lead me to believe so.

Obviously the redis is questionable with the allotted RAM but it should be fine for minimal traffic.

613 MiB memory
Up to 2 EC2 Compute Units (for short periodic bursts)
EBS storage only
32-bit or 64-bit platform
I/O Performance: Low
EBS-Optimized Available: No
API name: t1.micro

like image 23
thealfreds Avatar answered Oct 03 '22 03:10

thealfreds


A micro instance has been more than enough for my own site which runs nginx, wordpress, django, and a few other random things.

I'm sure it will be more than adequate for what your doing (unless it's number or IO intensive.. and if you don't know, it's probably not). And hey, it's free, so why not? AWS has a lot of cool features you can play with too!

like image 111
adahlin Avatar answered Oct 03 '22 04:10

adahlin