paint-brush
Daily DynamoDB Backups With Serverlessby@ErykWarren
2,181 reads
2,181 reads

Daily DynamoDB Backups With Serverless

by Eryk WarrenFebruary 4th, 2018
Read on Terminal Reader
Read this story w/o Javascript
tldt arrow

Too Long; Didn't Read

<strong><em>Update: with the introduction of </em></strong><a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/PointInTimeRecovery.html" target="_blank"><strong><em>Point-in-time recovery</em></strong></a><strong><em> backups, this solution is now obsolete.</em></strong>

Company Mentioned

Mention Thumbnail
featured image - Daily DynamoDB Backups With Serverless
Eryk Warren HackerNoon profile picture

During re:Invent 2017, Amazon announced a cool feature: on-demand backups of DynamoDB tables. In this post, I will go over how to set up regular automated backups, using the serverless framework.

Update: with the introduction of Point-in-time recovery backups, this solution is now obsolete.

TL;DR Install the serverless package for scheduled DynamoDB backups

Remember photocopiers?

On-Demand Backups

Previously, backing up DynamoDB tables was resource and time consuming. Depending on the solution, it would involve running custom programs on EC2 infrastructure, or even spawn Elastic Mapreduce x-large instances.

Now, with the click of a button, you can get an almost instantaneous backup of petabytes of data. Amazon is able to do this by taking snapshots of the tables (if you are curious, you can read about snapshot technologies).

On-Demand Backups are encrypted with an Amazon-managed key. They include:

  • the table data;
  • the provisioned capacity settings;
  • and the settings for Local and Global Secondary Indexes.

However, they do not include:

  • Auto Scaling settings,
  • TTL settings
  • tags
  • IAM policies
  • CloudWatch metrics and alarms.

You have to be aware that restoring backups will take more time, anywhere from 30 minutes to several hours if you have huge tables.

The Serverless Framework

Setting up Lambdas, AMI permissions, Cloudwatch settings can be a pain. Fortunately, the Serverless framework makes it a breeze!

Focus on your application, not your infrastructure.

serverless.com

Installation

Let’s go ahead and install the serverless framework:

npm install -g serverless

Depending on your installation, you might need to sudo.

Then install the code:

git clone https://github.com/unitoio/dynamodb-backup-scheduler.git

The trickiest part is to set up the AWS permissions. First you need to create an IAM profile with the right permissions for serverless. Edit the code from the file aws-profile.json and replace <region> and <account> by their actual values. The easiest way to get your account number is to go to the Support Center from the top right of the console:

and your account will show up at the top of the page.

Go to the IAM console, and create a new policy with this JSON content. Name it as you wish (like serverless-admin) and attach this policy to your user.

If you don’t have your access key and secret set up, generate them through IAM and install them on your machine by creating a new profile

aws configure --profile <account_name>

Configuration

The dynamodb-backup-scheduler package is easy to configure. Copy the file env-example.yml to env.yml. The file is self-explanatory. You will specify the list of the tables you want to back up, and for how long to keep the backups.

Deploy

We’re all set to get going:

serverless deploy -v

Watch the output as serverless creates for you the Lambda function, the IAM role for it and the CloudWatch event.

That’s it! Your scheduled backups are set up! Although, if you’re like me, you will want to test the lambda function now, and not wait for the daily event to fire.

Testing the Lambda

From the Lambda console, click on the function that was just created. It will have a name like dynamodb-backup-scheduler-production-backupDynamoDBTables. Near the top, create a new test event:

By looking into the source file serverless.yml, we see that the lamda is sent 3 inputs. We need those in our test event:

Make sure to give real table names in the last parameter. Once the test event is created, and we’re back on the Lambda function page, click the Test button

The execution results will show in the green section. If all is good, you can go to the DynamoDB console, and verify that the backups named backupTest were indeed created:

Monitoring through SNS alerts

To make the procedure complete and production-grade, there is one thing left: adding an alert when the backups are failing. This is done through the serverless-plugin-aws-alerts plugin. The package allows you to enable this on the production stage by specifying in env.yml a variable specifying the subscription to an SNS topic that will be created by the plugin.

notifications: