Created
January 10, 2011 12:53
-
-
Save rantoniuk/772743 to your computer and use it in GitHub Desktop.
Rake task for backing up MySQL database in Rails projects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :db do desc "Backup project database. Options: DIR=backups RAILS_ENV=production MAX=7" | |
task :backup => [:environment] do | |
datestamp = Time.now.strftime("%Y-%m-%d_%H-%M-%S") | |
base_path = Rails.root | |
base_path = File.join(base_path, ENV["DIR"] || "backups") | |
backup_base = File.join(base_path, 'db_backups') | |
backup_folder = File.join(backup_base, datestamp) | |
backup_file = File.join(backup_folder, "#{RAILS_ENV}_dump.sql") | |
FileUtils.mkdir_p(backup_folder) | |
db_config = ActiveRecord::Base.configurations[RAILS_ENV] | |
`mysqldump -u #{db_config['username']} -p#{db_config['password']} -i -c -q #{db_config['database']} > #{backup_file}` | |
raise "Unable to make DB backup!" if ( $?.to_i > 0 ) | |
`gzip -9 #{backup_file}` | |
dir = Dir.new(backup_base) | |
all_backups = dir.entries.sort[2..-1].reverse | |
puts "Created backup: #{backup_file}" | |
max_backups = (ENV["MAX"].to_i if ENV["MAX"].to_i > 0) || 7 | |
unwanted_backups = all_backups[max_backups..-1] || [] | |
for unwanted_backup in unwanted_backups | |
FileUtils.rm_rf(File.join(backup_base, unwanted_backup)) | |
end | |
puts "Deleted #{unwanted_backups.length} backups, #{all_backups.length - unwanted_backups.length} backups available" | |
end | |
end | |
# USAGE | |
# ===== | |
# rake db:backup | |
# RAILS_ENV=production rake db:backup | |
# MAX=14 RAILS_ENV=production rake db:backup | |
# DIR=another_dir MAX=14 RAILS_ENV=production rake db:backup |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hi warden,
thanks your sharing.
the link add function for restore DB task base on yours.
https://gist.github.com/jay16/9933729