I will have a one table database of users with uuids, age, gender, family income and 12 such fields. About 40 - 50 million of them. I would need to query based on age range, income range etc. and get the list of uuid's out. Each row should be around 400 characters if concatenated. Multiplying 400 bytes by 50Mil gets arond 17 - 18 GB Approx. It will grow but slowly.
Which will be the best database system to hold this data and execute fast queries. Mongo or MySQL ? Also what kind of hardware should be best to keep.
Also, can someone tell query time mySQL or Mongo will take based on experience. I need to design architecture of some other components of the entire system based on this.
