Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Should data warehouses such as Amazon's new Redshift offer ever be used as regular, day-to-day databases?

I have a use case for inserting / querying against around 50GB of new data daily, for an active web app.

I'm choosing between MySQL, Mongo and Redshift. Many of the queries are analytical/aggregate in nature. They involve financial transactions and web stats.

With this volume of data, could I cut out MySQL or Mongo and go directly with Redshift?

EDIT:

To clarify, I'm talking about using a Redshift DB exclusively, i.e. as my main database, bypassing MySQL and other 'front ends' altogether. Specifically, this could mean several things:

  1. Is Redshift suitable for running multiple concurrent queries, 24/7? My app issues 20-40 million SQL queries daily.

  2. Is the storage type safe/ideal for transactions?

What I want to gather is whether I should be using Redshift as both a 'regular' database (inserting customer records, website stats, logging transactions, etc) AND a data warehouse... or whether I should be inserting something before it (like MySQL or Mongo) and then replicating that data to Redshift in a way that's conducive only to running reports.

Is Redshift an ideal MySQL replacement? I'm hoping to do away with the hassle of replicating the same data in Redshift and having only ONE copy of that data to insert, update, select, etc.

share|improve this question

closed as off topic by Barmar, ethrbunny, X.L.Ant, JcFx, rene Feb 23 at 14:54

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

Absolutely. I would like to point you to a recent article (I got from Hacker News) showing Amazon Redshift having tremendous performance gains over Hadoop: http://www.slideshare.net/Hapyrus/amazon-redshift-is-10x-faster-and-cheaper-than-hadoop-hive

They make a very good point about cost benefit combined with the actual speed, such that your costs will actually go down even though Redshift is more expensive per instance. Since Redshift is so much faster.

share|improve this answer
Okay, maybe not an "article" per se, but it does speak pretty loudly. – L0j1k Feb 23 at 11:25
Excellent, thanks for that. I couldn't find any live benchmarks, so these metrics really help. It's a new AWS offering, but do you know if any live case studies showing its use as a regular, day-to-day DB? – Lee Feb 23 at 14:22
I do not, unfortunately. But if you run into any on your way, would you mind updating this thread and sharing? – L0j1k Feb 24 at 10:50
Happy to! Will also post a report of results once I switch to production. – Lee Feb 24 at 14:35
Excellent. Thank you! I think SO lacks so much when it comes to AWS infrastructure. – L0j1k Feb 25 at 6:05

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