Читать книгу Official Google Cloud Certified Professional Data Engineer Study Guide - Dan Sullivan - Страница 52

Wide-Column Databases

Оглавление

Wide-column databases are used for use cases with the following:

 High volumes of data

 Need for low-latency writes

 More write operations than read operations

 Limited range of queries—in other words, no ad hoc queries

 Lookup by a single key

Wide-column databases have a data model similar to the tabular structure of relational tables, but there are significant differences. Wide-column databases are often sparse, with the exception of IoT and other time-series databases that have few columns that are almost always used.

Bigtable is GCP’s managed wide-column database. It is also a good option for migrating on-premises Hadoop HBase databases to a managed database because Bigtable has an HBase interface. If you wish to manage your own wide column, Cassandra is an open source option that you can run in Compute Engine or Kubernetes Engine.

Official Google Cloud Certified Professional Data Engineer Study Guide

Подняться наверх