Restoring an Aurora Serverless v1 DB cluster
Important
Amazon has announced the end-of-life date for Aurora Serverless v1: March 31st, 2025. We strongly recommend upgrading any Aurora Serverless v1 DB clusters to Aurora Serverless v2 before that date. The upgrade can involve a change in the major version number of the database engine. Thus, it's important to plan, test, and implement this switchover before the end-of-life date. Starting January 8th, 2025, customers will no longer be able to create new Aurora Serverless v1 clusters or instances with either the Amazon Web Services Management Console or the CLI. For information about the migration process, see Upgrading from an Aurora Serverless v1 cluster to Aurora Serverless v2.
Aurora Serverless v2 scales more quickly and in a more granular way. Aurora Serverless v2 also has more compatibility with other Aurora features such as reader DB instances. You can learn about Aurora Serverless v2 in Using Aurora Serverless v2.
You can configure an Aurora Serverless v1 DB cluster when you restore a provisioned DB cluster snapshot with the the Amazon CLI or the RDS API.
When you restore a snapshot to an Aurora Serverless v1 DB cluster, you can set the following specific values:
-
Minimum Aurora capacity unit – Aurora Serverless v1 can reduce capacity down to this capacity unit.
-
Maximum Aurora capacity unit – Aurora Serverless v1 can increase capacity up to this capacity unit.
-
Timeout action – The action to take when a capacity modification times out because it can't find a scaling point. Aurora Serverless v1 DB cluster can force your DB cluster to the new capacity settings if set the Force scaling the capacity to the specified values... option. Or, it can roll back the capacity change to cancel it if you don't choose the option. For more information, see Timeout action for capacity changes.
-
Pause after inactivity – The amount of time with no database traffic to scale to zero processing capacity. When database traffic resumes, Aurora automatically resumes processing capacity and scales to handle the traffic.
For general information about restoring a DB cluster from a snapshot, see Restoring from a DB cluster snapshot.
You can configure an Aurora Serverless DB cluster when you restore a provisioned DB cluster snapshot with the Amazon Web Services Management Console, the Amazon CLI, or the RDS API.
When you restore a snapshot to an Aurora Serverless DB cluster, you can set the following specific values:
-
Minimum Aurora capacity unit – Aurora Serverless can reduce capacity down to this capacity unit.
-
Maximum Aurora capacity unit – Aurora Serverless can increase capacity up to this capacity unit.
-
Timeout action – The action to take when a capacity modification times out because it can't find a scaling point. Aurora Serverless v1 DB cluster can force your DB cluster to the new capacity settings if set the Force scaling the capacity to the specified values... option. Or, it can roll back the capacity change to cancel it if you don't choose the option. For more information, see Timeout action for capacity changes.
-
Pause after inactivity – The amount of time with no database traffic to scale to zero processing capacity. When database traffic resumes, Aurora automatically resumes processing capacity and scales to handle the traffic.
Note
The version of the DB cluster snapshot must be compatible with Aurora Serverless v1. For the list of supported versions, see Aurora Serverless v1.
To restore a snapshot to an Aurora Serverless v1 cluster with MySQL 5.7 compatibility, include the following additional parameters:
-
--engine aurora-mysql
-
--engine-version 5.7
The --engine
and --engine-version
parameters let you create a MySQL
5.7-compatible Aurora Serverless v1 cluster from a MySQL 5.6-compatible Aurora or Aurora Serverless v1
snapshot. The following example restores a snapshot from a MySQL 5.6-compatible cluster named
mydbclustersnapshot
to a MySQL 5.7-compatible Aurora Serverless v1 cluster named
mynewdbcluster
.
For Linux, macOS, or Unix:
aws rds restore-db-cluster-from-snapshot \ --db-cluster-identifier
mynewdbcluster
\ --snapshot-identifiermydbclustersnapshot
\ --engine-mode serverless \ --engine aurora-mysql \ --engine-version 5.7
For Windows:
aws rds restore-db-cluster-from-snapshot ^ --db-instance-identifier
mynewdbcluster
^ --db-snapshot-identifiermydbclustersnapshot
^ --engine aurora-mysql ^ --engine-version 5.7
You can optionally specify the --scaling-configuration
option to configure the minimum
capacity, maximum capacity, and automatic pause when there are no connections. Valid capacity values
include the following:
-
Aurora MySQL:
1
,2
,4
,8
,16
,32
,64
,128
, and256
. -
Aurora PostgreSQL:
2
,4
,8
,16
,32
,64
,192
, and384
.
In the following example, you restore from a previously created DB cluster snapshot named
mydbclustersnapshot
to a new DB cluster named
mynewdbcluster
. You set the --scaling-configuration
so that the
new Aurora Serverless v1 DB cluster can scale from 8 ACUs to 64 ACUs (Aurora capacity units) as needed to
process the workload. After processing completes and after 1000 seconds with no connections to support,
the cluster shuts down until connection requests prompt it to restart.
For Linux, macOS, or Unix:
aws rds restore-db-cluster-from-snapshot \ --db-cluster-identifier
mynewdbcluster
\ --snapshot-identifiermydbclustersnapshot
\ --engine-mode serverless --scaling-configuration MinCapacity=8,MaxCapacity=64,TimeoutAction='ForceApplyCapacityChange',SecondsUntilAutoPause=1000,AutoPause=true
For Windows:
aws rds restore-db-cluster-from-snapshot ^ --db-instance-identifier
mynewdbcluster
^ --db-snapshot-identifiermydbclustersnapshot
^ --engine-mode serverless --scaling-configuration MinCapacity=8,MaxCapacity=64,TimeoutAction='ForceApplyCapacityChange',SecondsUntilAutoPause=1000,AutoPause=true
To configure an Aurora Serverless v1 DB cluster when you restore from a DB cluster using the RDS API, run
the RestoreDBClusterFromSnapshot
operation and specify serverless
for the EngineMode
parameter.
You can optionally specify the ScalingConfiguration
parameter to configure the minimum
capacity, maximum capacity, and automatic pause when there are no connections. Valid capacity values
include the following:
-
Aurora MySQL:
1
,2
,4
,8
,16
,32
,64
,128
, and256
. -
Aurora PostgreSQL:
2
,4
,8
,16
,32
,64
,192
, and384
.