Skip to content

Instantly share code, notes, and snippets.

@BorisBresciani
Forked from merqlove/optimization.rake
Created June 26, 2019 12:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BorisBresciani/bc8834bca961ac40693932a6fcdd05a9 to your computer and use it in GitHub Desktop.
Save BorisBresciani/bc8834bca961ac40693932a6fcdd05a9 to your computer and use it in GitHub Desktop.
PostgreSQL optimization tasks for ActiveRecord
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