Could someone point me to post/pdf/explan here where I can learn more about hypertable database design, I have searched all over google but nothing useful comes up
Main problem I have is how do I store data that you "cant" represent as key value. For example lets say I want to track user reviews, I may simply imitate relational databases, generate new review key store all data I need, and then for for product X store keys to all reviews in json format to x.reviews
The other thing I came up with is simply have x.reviewKeys and then for each generated review push new key as a new version of that cell, assuming that I can store infinite number of versions of the same cell.
Second approach seems much more appropriate to me as I leave to database all the work I would implement in code.
Does anyone know how to handle this problem, or even better how does google handles this with their bigtable