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:
Is Redshift suitable for running multiple concurrent queries, 24/7? My app issues 20-40 million SQL queries daily.
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.
