cherouvim
cherouvim

Reputation: 31903

small webapp in Java+MySQL: GAE vs EC2

I want to develop a small web application (small=4 entities, 3 html forms, login, email and cron) but I've got no server to host it. I'd like to work in Java and MySQL so I've got the following dillema:

1) If I go to GAE I'll have to use something other than MySQL. Is it worth learning this "something other" and what could that be?

2) If I go to EC2 I'll be able to use whatever I want but I'll inherit all the sysadmin time costs. Is it worth the burden?

Also, which of those is cheaper assuming that I have 0 visitors per day?

thanks

Upvotes: 0

Views: 636

Answers (1)

sfussenegger
sfussenegger

Reputation: 36095

For your requirements, both GAE and AWS should be free (see GAE free quota and the quite new free usage tier for AWS). Thus money shouldn't be worth considering but time certainly is. What do you prefer? Spending time learning new things or spending time administering what you're already used to?

Getting started on GAE isn't that complicated. Hence I'd suggest that you simply give it a try. If you don't feel very comfortable, it shouldn't be too difficult to move to EC2 (or any root server).

Upvotes: 2

Related Questions