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.