Amazon DocumentDB 핵심 정리

image.png

1️⃣ DocumentDB 개요

Amazon DocumentDB는 MongoDB와 호환되는 관리형 NoSQL 문서 데이터베이스이다.

특징

➡ MongoDB의 클라우드 네이티브 버전이라고 볼 수 있다.


2️⃣ 데이터 모델

DocumentDB는 문서(Document) 기반 데이터베이스이다.

데이터 형태

{
  "user_id":101,
  "name":"Alice",
  "age":25,
  "city":"Seoul"
}

특징