Hubbry Logo
search button
Sign in
Wide-column store
Wide-column store
Comunity Hub
History
arrow-down
starMore
arrow-down
bob

Bob

Have a question related to this hub?

bob

Alice

Got something to say related to this hub?
Share it here.

#general is a chat channel to discuss anything related to the hub.
Hubbry Logo
search button
Sign in
Wide-column store
Community hub for the Wikipedia article
logoWikipedian hub
Welcome to the community hub built on top of the Wide-column store Wikipedia article. Here, you can discuss, collect, and organize anything related to Wide-column store. The purpose of the hub is to conne...
Add your contribution
Wide-column store

A wide-column store (or extensible record store) is a type of NoSQL database.[1] It uses tables, rows, and columns, but unlike a relational database, the names and format of the columns can vary from row to row in the same table. A wide-column store can be interpreted as a two-dimensional key–value store.[1] Google's Bigtable is one of the prototypical examples of a wide-column store.[2]

Wide-column stores versus columnar databases

[edit]

Wide-column stores such as Bigtable and Apache Cassandra are not column stores in the original sense of the term, since their two-level structures do not use a columnar data layout. In genuine column stores, a columnar data layout is adopted such that each column is stored separately on disk. Wide-column stores do often support the notion of column families that are stored separately. However, each such column family typically contains multiple columns that are used together, similar to traditional relational database tables. Within a given column family, all data is stored in a row-by-row fashion, such that the columns for a given row are stored together, rather than each column being stored separately.

Wide-column stores that support column families are also known as column family databases.[citation needed]

Notable examples

[edit]

Notable wide-column stores [3] include:

References

[edit]