Get ready for your next interview with our comprehensive question library
Amazon DynamoDB is a fully managed NoSQL database service provided by AWS. Key characteristics include:
DynamoDB supports several data types:
Scalar Types:
Collection Types:
DynamoDB | Relational Database |
---|---|
NoSQL, schema-less | SQL, fixed schema |
Horizontal scaling | Vertical scaling (primarily) |
Eventually consistent reads by default | ACID consistency |
No complex joins | Complex joins supported |
Key-value and document model | Relational model |
Managed service | Requires administration |
Pay per request/capacity | Pay for instance time |
A partition key is the primary key component that determines which physical partition your data is stored on. It's crucial because:
Example: In a user table, user_id
as partition key distributes users evenly across partitions.
Query:
Scan:
# Query example
response = table.query(
KeyConditionExpression=Key('user_id').eq('123')
)
# Scan example
response = table.scan(
FilterExpression=Attr('age').gt(21)
)
Upgrade to Premium to see the answer
Upgrade to PremiumUpgrade to Premium to see the answer
Upgrade to PremiumUpgrade to Premium to see the answer
Upgrade to PremiumUpgrade to Premium to see the answer
Upgrade to PremiumUpgrade to Premium to see the answer
Upgrade to PremiumUpgrade to Premium to see the answer
Upgrade to PremiumUpgrade to Premium to see the answer
Upgrade to PremiumUpgrade to Premium to see the answer
Upgrade to PremiumUpgrade to Premium to see the answer
Upgrade to PremiumUpgrade to Premium to see the answer
Upgrade to PremiumUpgrade to Premium to see the answer
Upgrade to PremiumUpgrade to Premium to see the answer
Upgrade to PremiumUpgrade to Premium to see the answer
Upgrade to PremiumUpgrade to Premium to see the answer
Upgrade to PremiumUpgrade to Premium to see the answer
Upgrade to PremiumAccess all premium content - interview questions, and other learning resources
We regularly update our features and content, to ensure you get the most relevant and updated premium content.
1000 monthly credits
Cancel anytime