Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is a good resource for database design on Bigtable/S3/Azure style databases?

Coming from a relational database background, I can make the transition to document oriented databases pretty quickly. Many of the most valuable "relations" are maintained by the hierarchy of the document. Many of the DODB variants of NoSQL also offer a very rich query language as well. This subset of NoSQL I think I understand.

I am looking for a good reference for designing around the database style implemented by Azure Table Storage, S3, and BigTable. It seems like all of the samples I see are trivial implementations.

Do you know of any non-trivial treatments of design in this space?

like image 412
Dennis Burton Avatar asked Nov 14 '22 05:11

Dennis Burton


1 Answers

For Azure Tables specifically (Microsoft's NoSQL database) the following blog post provides some good insight and talks to a couple of patterns to consider http://blogs.msdn.com/b/windowsazurestorage/archive/2012/11/06/windows-azure-storage-client-library-2-0-tables-deep-dive.aspx

like image 181
Jason Hogg - MSFT Avatar answered Dec 27 '22 12:12

Jason Hogg - MSFT