Created
January 9, 2015 13:55
-
-
Save merqlove/48b372f3a9602a842544 to your computer and use it in GitHub Desktop.
PostgreSQL optimization tasks for ActiveRecord
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 :optimization do | |
desc "Provide DB vacuum for production environment" | |
task :vacuum => :environment do | |
begin | |
tables = ActiveRecord::Base.connection.tables | |
tables.each do |table| | |
ActiveRecord::Base.connection.execute("VACUUM FULL ANALYZE #{table};") | |
end | |
rescue Exception => exc | |
Rails.logger.error("Database VACUUM error: #{exc.message}") | |
end | |
end | |
desc "Provide DB reindex for production environment" | |
task :reindex => :environment do | |
begin | |
tables = ActiveRecord::Base.connection.tables | |
tables.each do |table| | |
ActiveRecord::Base.connection.execute("REINDEX TABLE #{table};") | |
end | |
rescue Exception => exc | |
Rails.logger.error("Database REINDEX error: #{exc.message}") | |
end | |
end | |
desc "Reset PRIMARY KEY sequences " | |
task :resetpk => :environment do | |
tables = ActiveRecord::Base.connection.tables | |
tables.each do |table| | |
ActiveRecord::Base.connection.reset_pk_sequence!(table) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great!!! Thanks.