debian-mirror-gitlab/db/post_migrate/20170627101016_schedule_event_migrations.rb

41 lines
1 KiB
Ruby
Raw Normal View History

2017-09-10 17:25:29 +05:30
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
2019-02-15 15:39:39 +05:30
class ScheduleEventMigrations < ActiveRecord::Migration[4.2]
2017-09-10 17:25:29 +05:30
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
BUFFER_SIZE = 1000
disable_ddl_transaction!
class Event < ActiveRecord::Base
include EachBatch
self.table_name = 'events'
end
def up
jobs = []
Event.each_batch(of: 1000) do |relation|
min, max = relation.pluck('MIN(id), MAX(id)').first
if jobs.length == BUFFER_SIZE
# We push multiple jobs at a time to reduce the time spent in
# Sidekiq/Redis operations. We're using this buffer based approach so we
# don't need to run additional queries for every range.
2018-03-17 18:26:18 +05:30
BackgroundMigrationWorker.bulk_perform_async(jobs)
2017-09-10 17:25:29 +05:30
jobs.clear
end
jobs << ['MigrateEventsToPushEventPayloads', [min, max]]
end
2018-03-17 18:26:18 +05:30
BackgroundMigrationWorker.bulk_perform_async(jobs) unless jobs.empty?
2017-09-10 17:25:29 +05:30
end
def down
end
end