David
David

Reputation: 3046

AWS: stop database when inactive

I need a database, which is idle most of the time, because it is a test db. The devs normally use their local DB. Is there some function like: when 30 minutes of inactivity -> then stop db

Upvotes: 2

Views: 372

Answers (1)

httpdigest
httpdigest

Reputation: 5797

When you are talking about an RDBMS, then there is Aurora Serverless, with either MySQL or PostgreSQL Compatibility. You can configure it to scale-down to zero "capacity units" after a certain period of inactivity.

One key difference between an Aurora Serverless DB cluster and a provisioned DB instance is that with a Aurora Serverless DB cluster you cannot directly make the DB endpoint publicly accessible (from the Internet).

Upvotes: 2

Related Questions