Add Redshift + Materialized Views
Fix Cassaandra Classification
This commit is contained in:
@@ -180,6 +180,7 @@ For instance, take into account the snaptshot above. If you already know how to
|
|||||||
* [Sharding & Database Partitioning | System Design Basics](https://www.youtube.com/watch?v=RynPj8C0BXA) 📼 🆓
|
* [Sharding & Database Partitioning | System Design Basics](https://www.youtube.com/watch?v=RynPj8C0BXA) 📼 🆓
|
||||||
* [System Design - Sharding | Data Partitioning](https://www.youtube.com/watch?v=yNrVexoEnFM) 📼 🆓
|
* [System Design - Sharding | Data Partitioning](https://www.youtube.com/watch?v=yNrVexoEnFM) 📼 🆓
|
||||||
* SQL
|
* SQL
|
||||||
|
* Row-based
|
||||||
* PostgreSQL
|
* PostgreSQL
|
||||||
* [Postgres: Up & Running](https://learning.oreilly.com/library/view/postgresql-up-and/9781491963401/) 📕 💰 ⭐️
|
* [Postgres: Up & Running](https://learning.oreilly.com/library/view/postgresql-up-and/9781491963401/) 📕 💰 ⭐️
|
||||||
* [Learning PostgreSQL 11](https://learning.oreilly.com/library/view/learning-postgresql-11/9781789535464/) 📕 💰
|
* [Learning PostgreSQL 11](https://learning.oreilly.com/library/view/learning-postgresql-11/9781789535464/) 📕 💰
|
||||||
@@ -225,6 +226,12 @@ For instance, take into account the snaptshot above. If you already know how to
|
|||||||
* [Getting Started with Aurora Serverless Data API](https://www.youtube.com/watch?v=b_BzV1G1iRs) 📼 🆓
|
* [Getting Started with Aurora Serverless Data API](https://www.youtube.com/watch?v=b_BzV1G1iRs) 📼 🆓
|
||||||
* Cross-region Replication
|
* Cross-region Replication
|
||||||
* [Best practices for Amazon RDS for PostgreSQL cross-Region read replicas](https://aws.amazon.com/blogs/database/best-practices-for-amazon-rds-for-postgresql-cross-region-read-replicas/) 📰 🆓
|
* [Best practices for Amazon RDS for PostgreSQL cross-Region read replicas](https://aws.amazon.com/blogs/database/best-practices-for-amazon-rds-for-postgresql-cross-region-read-replicas/) 📰 🆓
|
||||||
|
* Column-based
|
||||||
|
* Redshift
|
||||||
|
* Materialized Views
|
||||||
|
* [Docs](https://docs.aws.amazon.com/redshift/latest/dg/materialized-view-overview.html) 📰 🆓
|
||||||
|
* [Overview](https://www.youtube.com/watch?v=mQAs44MHmeY) 📼 🆓
|
||||||
|
* [Deep-Dive](https://www.youtube.com/watch?v=PjBMZW4Ze0c) 📼 🆓
|
||||||
* NoSQL
|
* NoSQL
|
||||||
* KeyValue
|
* KeyValue
|
||||||
* [BoJack](https://github.com/marceloboeira/bojack) ✍🏼 💻 🆓
|
* [BoJack](https://github.com/marceloboeira/bojack) ✍🏼 💻 🆓
|
||||||
|
|||||||
@@ -33,15 +33,18 @@ graph TD
|
|||||||
DBT --> DBTR[Replication]
|
DBT --> DBTR[Replication]
|
||||||
DBT --> DBTX[Sharding]
|
DBT --> DBTX[Sharding]
|
||||||
DB --> SQL[SQL]
|
DB --> SQL[SQL]
|
||||||
SQL --> PgSQL
|
SQL --> rSQL[Row-oriented]
|
||||||
SQL --> MySQL
|
rSQL --> PgSQL
|
||||||
SQL --> Cassandra
|
rSQL --> MySQL
|
||||||
|
SQL --> cSQL[Column-oriented]
|
||||||
|
cSQL --> Redshift
|
||||||
DB --> NoSQL[NoSQL]
|
DB --> NoSQL[NoSQL]
|
||||||
NoSQL --> KV[KeyValue]
|
NoSQL --> KV[KeyValue]
|
||||||
KV --> Rd[Redis]
|
KV --> Rd[Redis]
|
||||||
NoSQL --> DoS[DocumentStore]
|
NoSQL --> DoS[DocumentStore]
|
||||||
DoS --> Mng[Mongo]
|
DoS --> Mng[Mongo]
|
||||||
DoS --> ES[ElasticSearch]
|
DoS --> ES[ElasticSearch]
|
||||||
|
NoSQL --> CS[Cassandra]
|
||||||
SW --> LD[Ledgers]
|
SW --> LD[Ledgers]
|
||||||
|
|
||||||
SW --> DSi[Distributed Systems]
|
SW --> DSi[Distributed Systems]
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 301 KiB After Width: | Height: | Size: 307 KiB |
Reference in New Issue
Block a user