카테고리 없음
[DynamoDB] Query vs Scan
보리시스템
2024. 7. 17. 14:13
https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_Query.html
Query - Amazon DynamoDB
DynamoDB calculates the number of read capacity units consumed based on item size, not on the amount of data that is returned to an application. The number of capacity units consumed will be the same whether you request all of the attributes (the default b
docs.aws.amazon.com
https://docs.aws.amazon.com/ko_kr/amazondynamodb/latest/developerguide/SQLtoNoSQL.ReadData.html
테이블에서 데이터 읽을 때 SQL과 DynamoDB의 주요 차이점 - Amazon DynamoDB
관계형 데이터베이스의 경우, SELECT 문을 사용하여 여러 테이블의 데이터를 조인하고 결과를 반환할 수 있습니다. 조인은 관계형 모델의 기초입니다. 조인의 효율적 실행을 위해서는 데이터베이
docs.aws.amazon.com
- Query - 특정 파티션 키가 있는 항목을 모두 가져옵니다. 이러한 항목 안에서 키를 정렬하고 데이터의 하위 집합만 가져오도록 조건을 적용할 수 있습니다. Query는 데이터가 저장된 파티션에 대한 빠르고 효율적인 액세스를 제공합니다. (자세한 설명은 파티션 및 데이터 배포 섹션을 참조하십시오.)
- Scan - 지정한 테이블의 모든 항목을 가져옵니다. (이 작업은 시스템 리소스를 많이 사용할 수 있으므로 큰 테이블에는 사용해서는 안 됩니다.)