pgbackups-archive

Gem Version Code Climate

A means of automating Heroku's pgbackups and archiving them to Amazon S3.

Overview

The pgbackups:archive rake task this gem provides will capture a pgbackup, wait for it to complete, then store it within the Amazon S3 bucket you specify. This rake task can be scheduled via the Heroku Scheduler, thus producing automated, offsite, backups.

The rake task will use pgbackups' --expire flag to remove the oldest pgbackup Heroku is storing when there are no free slots remaining.

You can configure retention settings at the Amazon S3 bucket level from within the AWS Console if you like.

Use

Determine which Heroku app to run the task under

Option 1 - Add pgbackups-archive to your existing application

Recommended for apps with light memory usage.

Add the gem to your Gemfile and bundle:

gem "pgbackups-archive"
bundle install

Option 2 - Add pgbackups-archive to a standalone application

Recommended for apps with heavier memory usage.

  • Create a new repo with pgackups-archive added to that app's Gemfile and push it to a new Heroku app.
  • Ensure the PGBACKUPS_DATABASE_URL environment variable you set for your backup app points to your main app's DATABASE_URL, or other follower URL, so that pgbackups-archive in your backup app knows to backup your real app's database.

This option exists because the streaming download & upload of the backup file will utilize a certain amount of memory beyond what an instance of your application uses and if you're close to the threshold of your Dyno size as it is, this increment could put the instance over the limit and cause it to encounter memory allocation errors. By running a dedicated Heroku app to run pgbackups-archive the task will have ample room at the 1X Dyno level to stream the backup files.

Install Heroku addons

heroku addons:add pgbackups
heroku addons:add scheduler:standard

Apply environment variables

heroku config:add PGBACKUPS_AWS_ACCESS_KEY_ID="XXX"
heroku config:add PGBACKUPS_AWS_SECRET_ACCESS_KEY="YYY"
heroku config:add PGBACKUPS_BUCKET="myapp-backups"
heroku config:add PGBACKUPS_REGION="us-west-2"
heroku config:add PGBACKUPS_DATABASE_URL="your main app's DATABASE_URL or other follower URL here"
  • PGBACKUPS_DATABASE_URL can be set either to DATABASE_URL or a follower database you setup if you would prefer to not backup from your primary databse for performance reasons.
  • If PGBACKUPS_DATABASE_URL is omitted, pgbackups-archive will default to the DATABASE_URL of the Heroku app it runs under. This setting will be required going forward, so you'll want to have it set.
  • As mentioned above, the PGBACKUPS_DATABASE_URL is mandatory if you are the using Option 2 above.
  • A good security measure would be to use a dedicated set of AWS credentials with a security policy only allowing access to the bucket you're specifying. See this Pro Tip on Assigning an AWS IAM user access to a single S3 bucket.

Add the rake task to scheduler

heroku addons:open scheduler

Then specify rake pgbackups:archive as a task you would like to run at any of the available intervals.

Loading the Rake task

If you're using this gem in a Rails 3 app the rake task will be automatically loaded via a Railtie.

If you're using this gem with a Rails 2 app, or non-Rails app, add the following to your Rakefile:

require "pgbackups-archive"

Testing

To run the test suite, use the guard command and save a file or hit enter to run the full suite.

Use the pgbackups-archive-dummy test harness to setup a dummy database on Heroku to test against.

Disclaimer

I shouldn't have to say this, but I will. Your backups are your responsibility. Take charge of ensuring that they run, archive and can be restored periodically as expected. Don't rely on Heroku, this gem, or anything else out there to substitute for a regimented database backup and restore testing strategy.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a Pull Request

Contributors

Many thanks go to the following who have contributed to making this gem even better:

License

  • Freely distributable and licensed under the MIT license.
  • Copyright (c) 2012-2015 Kenny Johnston endorse