Cubrick

Cubrick is a distributed multidimensional in-memory DBMS developed for internal use at Facebook. It is designed for low-latency realtime OLAP analysis over large datasets. It is built from scratch to support merely the necessary features required by its realtime analysis use cases.

Query Execution

Materialized Model

Intermediate results are generated before moving to the next step.

Data Model

Column Family / Wide-Column

Cubrick stores data in bricks (i.e., partitions) in a column-wise fashion. In each brick, each column has a dynamic vector to store the metrics or the BESS encoded indices. Cells in a brick are unordered, and they are only appended to the end of the brick in the data ingestion.

Checkpoints

Non-Blocking

Data persistency in Cubrick is done by an external disk-based key value store (e.g., RocksDB), and the in-memory data are periodically and asynchronously flushed to the persistent storage.

Storage Model

Custom

Indexes

Hash Table

Cubrick uses Granular Partitioning as the main indexing approaches to organize bricks (i.e., partitions) in a cell (i.e., table). Multidimensional indices are converted to partition ids via a conversion function, which maps predefined multidimensional ranges to an integer. The partition id to storage node mapping is maintained by consistent hashing.

Compression

Dictionary Encoding

String fields in Cubrick are dictionary encoded, for both dimensions (i.e., indices) and metrics (i.e., values). Internally, Cubrick processes string fields using their encoded integers, and only converts them back when returning the results to the users.

Cubrick also uses BESS (Bit-Encoded Sparse Structure) encoding for compressing the multidimensional index for each cell (i.e., a group of metrics corresponding to the same dimension).

Logging

Not Supported

Logging is not supported by Cubrick. Cubrick is purely in-memory, and the data persistency of Cubrick is done by the disk-based key value store (e.g., RocksDB).

Storage Architecture

In-Memory

Joins

Not Supported

Cubrick assumes the ingested data are denormalized, and it does not support joins.

Query Interface

SQL

A subset of SQL is supported, including filtering, aggregations, group bys, order bys, having, and some arithmetic and logical expressions.

Parallel Execution

Intra-Operator (Horizontal)

Queries are sent to all nodes, and nodes process the same queries locally on their own data.

Cubrick Logo
Website

https://research.fb.com/cubrick-a-new-multidimensional-in-memory-dbms/

Developer

Facebook

Country of Origin

US

Start Year

2016

Project Type

Industrial Research

Licenses

Proprietary