Ask HN: Cheap databases for new projects?

2 points by kevinsimper ↗ HN
I looking after cheap databases for when I make new projects. The are often small projects with no intention often to make money, BUT I really don't want to host a database myself. The reasons is many, but most importantly backups! You have to extremely careful to watch database cron jobs to be sure the aren't failing.

The definition on cheap can be many, but my idea is that it only cost $1 per gigabyte stored or less and that I can only $1 dollar from the start.

I know it is extremely cheap, but there is already a lot of cheap PHP hosting providers that provide hosting and database, but it is always mysql and nothing else and there "limit" on the database is always unclear (connections, size, table count, user count, etc.) Heroku provides postgres for free, but only 10k rows and then goes directly to $9 dollars.

GCloud new SQL is awesome, and it only cost $7,5 + storage.

I know there are some NoSQL providers that gives 0,5G for free, but I am not interested in nosql, but why aren't there similar providers for SQL?

Am I one of a kind to want this?

8 comments

[ 1177 ms ] story [ 1926 ms ] thread
What about Amazon RDS? What kind of performance do you need?

https://calculator.s3.amazonaws.com/index.html#s=RDS

Indicates you can get 5GB for $0.00 as long as you don't want performance.

Disclaimer--I haven't done this.

I don't see that you can get 5GB for free and you still have to run the SQL micro instance which cost ~$13 a month, but their free tier includes SQL, but my free tier has run out. Wonder if I can get a new free tier?
A single google cloud sql baby instance should host 10, 20, 50 baby projects with no problem! Just use a different schema per project and you can split it later if you are successful.
Your right, I could just share that between project! Did not think about that way and the SQL micro would still deliver better performance than a shared service! Thanks for that eye opener! :D
Ya give it a try. I was super impressed with gen2 cloud sql perf even from a baby instance.
You can strap on multiple low end yet cheap VPS servers with Redis. It can deliver decent performance but harder to keep security and reliability together, or if you want SQL go for Mongo.
Yes, but you still have to take backup even though they are clustered and that is what I did want to trust myself with :P Else good idea!
What's wrong with SQLite? Backup is a cron job to move a file. Keep the db in the same place as the site if it is low value. No expense but the expense you already have made for whatever server is hosting the content that isnt the database. Basically every OS has drivers for it, and it has really good performance for such a small package (especially if you dont have oodles and oodles of data)