summaryrefslogtreecommitdiff
path: root/db/post_migrate/20170627101016_schedule_event_migrations.rb
blob: 1f34375ff0d51f7a5c42d39c0fbd3782674cf5e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class ScheduleEventMigrations < ActiveRecord::Migration
  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.
        BackgroundMigrationWorker.perform_bulk(jobs)
        jobs.clear
      end

      jobs << ['MigrateEventsToPushEventPayloads', [min, max]]
    end

    BackgroundMigrationWorker.perform_bulk(jobs) unless jobs.empty?
  end

  def down
  end
end