I'm building an application that needs to query a lot of data that is written once and not changed anymore. Should I use MySQL for that or should I use something like SimpleDB or BigTable? (I need to write once, read many times)

Thank you.

Edit: I want to use Heroku, big for me is more than 5MB. "Thousands of rows" take more than 5MB. That's why I'm wondering if I should use CouchDB, SimpleDB or MongoDB in order not to pay the $15 that Heroku charges. Suggestions to overcome this? Thank you all for the comments!

link|improve this question

69% accept rate
4  
Do you want to do joins? Do you want to retrieve data by attributes other than UID? How important is performance? By "lots of data" do you mean big sets of many rows or many reads of single rows? – APC Aug 17 '10 at 11:42
What are your performance/durability expectations? Sharding? – FractalizeR Aug 17 '10 at 11:46
2  
You forgot the most important information: the shape of your data. If your data is not relational, then MySQL is out of the question anyway, regardless of what your perfomance requirements are. And if your data is relational, then SimpleDB and BigTable are out of the question. Do you have relational data? Graph data? Semi-structured document data? Hierarchical data? Ontology/Triple/RDF data? And I also agree with @FractalizeR: do you need A, C, I, D? If yes, how much or how little of each do you need? When do you need it? Are the needs always the same or do they differ from query to query? – Jörg W Mittag Aug 17 '10 at 12:29
"lots of data" = Thousands of rows that can be read many many times at a time. The data is relational. Edit: I'll have a table with thousands of references to S3 files and each user will be able to create a "portfolio" of those files. So each user will have unlimited files in his portfolio. – donald Aug 17 '10 at 12:39
1  
Thousands of rows = small amount of data. So, any DB is ok, I think. If you say millions, then you need to choose carefully. – FractalizeR Aug 17 '10 at 12:41
show 1 more comment
feedback

5 Answers

up vote 1 down vote accepted

More important than your choice of database engine is your table structure. You should read up on OLAP database structure. Another consideration is the language you are writing in, make sure there is good support for the API of the database you want to use. CouchDB would be good as it has very low overheads due to the lack of relations/transactions.

link|improve this answer
Is CouchDB suitable for many reads and no writes? Thanks. – donald Aug 17 '10 at 12:41
Since you're not using writes during operation, it doesn't matter how efficient it is at doing no writes :-). However due to the fact it does not do transactions, or manage relations, there is less overhead compared to other, more complex database systems like MySQL. It's about as simple as it gets, and that's a good thing in this case. – Tom Medley Aug 17 '10 at 12:50
Please read my edit. – donald Aug 17 '10 at 23:14
Do not pay for a database system to manage a 5MB database (small!). Use CouchDB and be done with it, or frankly use anything, you won't notice the difference. Have a read of this, the quotes in particular: en.wikipedia.org/wiki/Program_optimization#When_to_optimize – Tom Medley Aug 17 '10 at 23:34
Thank you! CouchDB for everything is fine? Even for storing usernames/passwords? I'll definitely think about it! – donald Aug 17 '10 at 23:47
show 1 more comment
feedback

What does it mean "a lot of data"? Thousands, millions, billions of rows? How many and what columns per row? Will you use many joins or simple selects?

If your tables are simple or you need to use complicated JOINs, I would pick any SQL you're familiar with.

If your structure is complicated and if document oriented database would suit your needs, I would pick MongoDB (preferred) or CouchDB.

Edit: According to your comment - thousands of rows is not that much. Use your favourite database and set as much cache as it needs (read more about necessary cache amount or start a new topic). Or use Memcached but I suggest to use database cache as it's efficient too and painless for you. Goog luck man!

link|improve this answer
Thousands of rows. 20 columns per row. Thanks. – donald Aug 17 '10 at 12:40
1  
That's not even close to being big. Seriously. Any database engine will suit your need. Even free database engine. – Pierre-Alain Vigeant Aug 17 '10 at 15:54
Please read my edit. – donald Aug 17 '10 at 23:15
@Tiago: If you want to use heroku.com as a web hosting and they charge $15 per database, then just make your decision and pay the fee or pick another hosting. It's absolutely normal that services (like hosting) cost money. – dwich Aug 18 '10 at 8:23
1  
@Tiago: You should pick the right technology according to your needs, the budget is not that important especially in your case - 15 bucks a month is a price of couple of burgers. Or if you want me to say - go for the 1GB FREE CouchDB, if this will make you happy, go for it! – dwich Aug 18 '10 at 11:33
show 3 more comments
feedback

I think you should use non transactional and document oriented database like MongoDB or CouchDB .

link|improve this answer
Can you elaborate on that please? – donald Aug 17 '10 at 12:41
feedback

For "write once, read many times", de-normalized database (that does not waste cycles to do joins etc.) is a good choice.

So, you should design your tables such that these reads have to do minimum number of I/Os and joins. You can do that with any database. It is the structure of your tables that matters.

AFAIK, SimpleDB and BigTable are distributed databases and offer very good query speeds if your users are distributed geographically (thereby bypassing the network latencies). They will not offer much advantage if the I/O latency is not the bottleneck.

link|improve this answer
feedback

The amount of data you have is tiny. Any DBMS will cope with a few thousand rows. I suggest you look first at one of the popular SQL DBMSs - such as MySQL, which you already mentioned. You need to make the choice based on the functional requirements rather than be concerned with the data size.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.