RDS (Relational Database Service)
- Introduction
- Encryption
- Backups
- Restoring Backups
- Multi-AZ
- Read Replicas
- Multi-AZ vs Read Replicas
- RDS Cheat Sheet
- multi AZ O : master-standby
- 2개의 AZ에 1개는 master, 1개는 복제본
- Read replica
- async로 데이터가 master가 싱크되는 read replica를 만들 수 있음
- db 종류에 따라 몇개까지 read replica를 만들 수 있는지 결정됨
- maria db, postgre : ~ 5
- aurora : ~ 15
- 읽기 로드를 offload하면서 성능 up
- 장애가 발생해도 for high durability, read replica를 master로 승격시켜서 빠르게 복구 가능
- 그때그때 throuhput에 따라 수평적인 확장 가능 (select문)
from AWS (01/30/2022)
- Answer : a, d
- b. Sharding: 직접 디비를 ec2에 install해야 구현 가능
- Sharding : 같은 테이블 스키마를 가진 데이터를 다수의 데이터베이스에 분산하여 저장하는 방법
- reference https://nesoy.github.io/articles/2018-05/Database-Shard
- c. simple get/put request&query : KVS(key-value store)형태인 dynamoDB에 더 적합
- e. rdbms 사용자 정의: 직접 디비를 ec2에 install해야 효율적
- b. Sharding: 직접 디비를 ec2에 install해야 구현 가능
Reference
AWS Certified Solutions Architect - Associate 2020 (PASS THE EXAM!), Youtube, uploaded by freeCodeCamp.org, 12/24/2019, https://www.youtube.com/watch?v=Ia-UEYYR44s
Comments powered by Disqus.