Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20170627101016_schedule_event_migrations.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e020d05f787522b35a11b29b048cf227e22a358 (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.bulk_perform_async(jobs)
        jobs.clear
      end

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

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

  def down
  end
end