Interview Databases & Caching

What is Amazon RDS, and what does it manage for you versus self-managed databases?

Databases & Caching · Basic level

Answer

Amazon RDS is AWS managed relational database service. AWS handles provisioning, backups, patching, storage operations, monitoring integration, and HA primitives, while the customer still owns schema design, query tuning, access control, data correctness, capacity choices, and application connection behavior.

Technical explanation

RDS removes much of the undifferentiated DBA work but it does not remove database engineering accountability.

The shared responsibility line matters: AWS manages the platform; the team manages workload design, users, queries, parameters, and safe changes.

A strong SRE answer mentions both managed-service benefits and remaining operational risks such as bad SQL, connection storms, and poor indexing.

Hands-on example

Create a small encrypted PostgreSQL instance, then validate what remains your responsibility:

$ aws rds create-db-instance --db-instance-identifier app-dev-pg --engine postgres --db-instance-class db.t4g.micro --allocated-storage 20 --backup-retention-period 7 --storage-encrypted

After creation: create least-privilege app users, restrict the security group to app subnets, enable slow query logging, test restore, and baseline CPU, connections, and query latency.

Preparing for an interview?

Check how well your resume matches the role with our free resume checker— match score, ATS check, and the skills you're missing.

More Databases & Caching interview questions

← All Databases & Caching questions