33
loading...
This website collects cookies to deliver better user experience
Read Workload | Category | Description |
---|---|---|
Fetch value for single key | Key/Value | Returns unstructured value |
Fetch values for related keys | Key/Value | Returns collection of values |
Find single row with criteria | OLTP | Returns tuple (row of named columns) using column indexes |
Find group of rows with criteria | OLTP | Returns collection of tuples using column indexes |
Read rows within transaction | OLTP | Returns value based on transaction isolation level |
Join subset of rows & related rows | OLAP | Returns collection of tuples joined across multiple tables |
Join/summarize for few columns | OLAP | Returns count/histogram on a limited set of columns |
Find/join/summarize for all columns | DSS | Returns data transformation computed against all available columns |
READ WORKLOAD |
CACHE Redis, Memcached |
LSM **** Cassandra, HBase, RocksDB, LevelDB |
BTREE **** MySQL, Postgresql, SQLite, SQL Server |
COLUMNAR **** Druid, Iceberg, Parquet, Orc |
M/R **** Hadoop, Resurface |
---|---|---|---|---|---|
Fetch value for single key | 🥳 | 😀 | 🤔 | ||
Fetch values for related keys | 😀 | 🥳 | 😀 | ||
Find single row with criteria | 😀 | 😀 | 🥳 | ||
Find group of rows with criteria | 😀 | 🥳 | |||
Read row within transaction | 🤔 | 🥳 | |||
Join subset of rows & related rows | 🥳 | 😀 | |||
Join/summarize for few columns | 😀 | 🥳 | 😀 | ||
Find/join/summarize for all columns | 😱 | 😱 | 🥳 |