1 / 5

BigTable and Google DataStore

Explore the intricacies of BigTable and Google Datastore, pioneering storage systems designed for scalability and efficiency. BigTable organizes data by row keys and uses column families to structure information similarly to column stores. Its versioned column values and reverse chronological storage enhance data retrieval. The integration with Chubby lock-manager ensures atomic access to data and control lists. In contrast, Google Datastore represents entities as sorted sharded arrays, optimizing queries with automatic index creation while allowing developers to specify complex composite indexes.

armand
Télécharger la présentation

BigTable and Google DataStore

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. BigTable and Google DataStore

  2. BigTable • Physically sorted on row-key – like a row-store • Column families - like column-stores • Variable (record-by-record) columns within a column family • Column-values versioned; stored in reverse chronological order • Designed to store hyperlink structure of web

  3. BigTable Storage Also: • Chubby lock-manager manager used to store location of root, column-families per-table, access-control lists etc. and ensure atomic access to such informations

  4. Google Data Store - recap entity groups range queries

  5. Google Datastore in BigTable • View the Entities BigTable as a sharded array sorted lexicographicallyby key values • Most indexes created automatically by GAE when queries are run for the first time • Certain indexes, such as composite indexes, need to be specified by developers z

More Related