Bigtable
雙重底
量化金融分析師
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Bigtable: A Distributed Storage System for Structured Data : part1 Abstract and Introduction
AbstractBigtable is a distributed storage system for managing structured data that is designed to scale to a very large size: petabytes of data across thousands of commodity servers. Many projects原创 2017-09-01 20:56:12 · 491 阅读 · 0 评论 -
Bigtable: A Distributed Storage System for Structured Data : part2 Data Model (数据模型)
2 Data ModelA Bigtable is a sparse, distributed, persistent multidimensional sorted map. The map is indexed by a row key, column key, and a timestamp; each value in the map is an uninterpreted a原创 2017-09-01 22:15:55 · 1151 阅读 · 0 评论 -
Bigtable: A Distributed Storage System for Structured Data : part3 API
3 APIThe Bigtable API provides functions for creating and deleting tables and column families. It also provides functions for changing cluster, table, and column family metadata, such as access co原创 2017-09-01 23:14:13 · 531 阅读 · 0 评论 -
Bigtable: A Distributed Storage System for Structured Data : part4 Building Blocks
4 Building BlocksBigtable is built on several other pieces of Google infrastructure. Bigtable uses the distributed Google File System (GFS) to store log and data files. A Bigtable cluster typica原创 2017-09-02 09:49:22 · 349 阅读 · 0 评论 -
Bigtable: A Distributed Storage System for Structured Data : part5 Implementation
5 ImplementationThe Bigtable implementation has three major components: a library that is linked into every client, one master server, and many tablet servers. Tablet servers can be dynamically原创 2017-09-02 09:52:42 · 773 阅读 · 0 评论 -
Bigtable: A Distributed Storage System for Structured Data : part8 Real Applications
8 Real ApplicationsAs of August 2006, there are 388 non-test Bigtable clusters running in various Google machine clusters, with a combined total of about 24,500 tablet servers. Table 1 shows a原创 2017-09-02 14:34:06 · 413 阅读 · 0 评论 -
Bigtable: A Distributed Storage System for Structured Data : part9 Lessons
9 LessonsIn the process of designing, implementing, maintaining,and supporting Bigtable, we gained useful experience and learned several interesting lessons.One lesson we learned is that large dis原创 2017-09-02 16:34:04 · 378 阅读 · 0 评论 -
Bigtable: A Distributed Storage System for Structured Data : part10 Related Work
10 Related WorkThe Boxwood project [24] has components that overlap in some ways with Chubby, GFS, and Bigtable, since it provides for distributed agreement, locking, distributed chunk storage, and原创 2017-09-02 16:51:44 · 469 阅读 · 0 评论 -
Bigtable: A Distributed Storage System for Structured Data : part11 Conclusions and Acknowledgements
11 ConclusionsWe have described Bigtable, a distributed system for storing structured data at Google. Bigtable clusters have been in production use since April 2005, and we spent roughly seven per原创 2017-09-02 17:04:12 · 386 阅读 · 0 评论
分享