Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm currently working on restructuring of a database which lies under a system we have developed. We are thinking about porting the solution to the cloud.

What we do is to retrieve large number of data from ERP systems (items, sale per day etc.) and do complicated calculations on this data per item in our own database. The numbers of records we have for example in the sale table can be up to trillions of rows. We create data from these calculations in the form of orders and forecasts.

I'm interested in looking at NoSQL solutions, because of suitability for cloud environment and also to simplify the codebase. However I'm not sure on if NoSQL is suitable for use case like I have. What do you guys think, should I stick with RDBMS or look into NoSQL?

If you think I should look closer into NoSQL, is MongoDB the way to go or is there something else you would recommend?

I'm thinking about using Node.js, Rails or Razor MVC for the code.

share|improve this question
Data size is not enough to decide on a DB tech. You should analyze your query patterns and see if a database can support them efficiently – Sergio Tulentsev Jun 1 '12 at 11:46

closed as not constructive by joran, tereško, PeeHaa 埽, hakre, Graviton Jun 14 '12 at 4:13

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

If using mongodb a combination of a sharded mongodb setup and hadoop to crunch the numbers would be a good beginning. There is a very good official mongodb hadoop plugin.

https://github.com/mongodb/mongo-hadoop

I would definitively load test the data setup and experiment

share|improve this answer

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