All Notes
AWS
AWS
  • AIM
  • General Stuff about AWS
  • AWS Global Infrastructure
  • Interacting with AWS
  • AWS Identity and Access Management
    • AWS Organizations
    • Users
    • Policies and Permissions
    • Groups and Roles
    • Federation
    • Access Control (via available tools)
    • AWS Cognito
    • AWS IAM Identity Center
  • Networking and Content Delivery in AWS
    • AWS VPC
    • AWS Route 53
    • Elastic Load Balancing
    • AWS CloudFront
    • Amazon API Gateway
  • AWS Storage Services
    • Amazon EBS
    • Amazon EFS
    • Amazon FSx
    • S3
    • AWS Databases Services
      • Amazon RDS
      • Amazon DymanoDB
      • Amazon Elasticache
      • Amazon RedShift
      • Amazon DocumentDB
  • AWS Compute Services
    • EC2
    • Elastic BeanStalk
    • AWS Lambda
    • Container Services
      • ECR and ECS
      • EKS
      • AppRunner
  • Other AWS Services
    • CloudFormation
    • AWS Key Management Services (KMS)
    • AWS Secrets Manager
    • AWS Certificate Manager (ACM)
    • AWS Messaging Services
      • AWS SNS (Simple Notification Service)
      • AWS Simple Queue Service (SQS)
    • AWS Systems Manager
      • Application Management
      • Node Management
    • Logging and Monitoring
      • AWS CloudTrail
      • AWS CloudWatch
    • AWS Macie
    • AWS Inspector
    • AWS GuardDuty
Powered by GitBook
On this page
  • Features
  • Steps for creating a DynamoDB Table
  1. AWS Storage Services
  2. AWS Databases Services

Amazon DymanoDB

PreviousAmazon RDSNextAmazon Elasticache

Last updated 5 months ago

Features

In last page, Relational DBs were discussed. The service offering from Amazon for Non-Relational DBs which supports NoSQL for querying part, is Amazon DynamoDB.

Unlike Amazon RDS, which is a PaaS, since this is a SaaS offering, not only, it is fully managed, it is also not required to manage the database layer, so need to think of schema

It provides both key-value and document database.

It provides consistent, single-digit millisecond response times at any scale.

It supports ACID (Atomicity, Consistency, Isolation and Durability) transaction

It supports Identity and Access controls on Table

It supports automated scaling without excessive maintenance and has extremely low latency

It offers in-memory cache with DynamoDB Accelerator (DAX)

It supports server-less applications and it autoscales to support growing demand

Steps for creating a DynamoDB Table

When creating a table, not that every table is associated with a partition key

Note, DynamoDB supports PartiQL which is used to query NoSQL DB like DynamoDB using SQL queries