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

20210430154631_add_slice_multiplier_and_max_slices_to_elastic_reindexing_task.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: be022c1b97359919a3b62aa54c0df8d006127bc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true
class AddSliceMultiplierAndMaxSlicesToElasticReindexingTask < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DEFAULT_MAX_TOTAL_SLICES_RUNNING = 60
  DEFAULT_SLICE_MULTIPLIER = 2

  def change
    add_column :elastic_reindexing_tasks, :max_slices_running, :integer,
               limit: 2,
               default: DEFAULT_MAX_TOTAL_SLICES_RUNNING,
               null: false
    add_column :elastic_reindexing_tasks, :slice_multiplier, :integer,
               limit: 2,
               default: DEFAULT_SLICE_MULTIPLIER,
               null: false
  end
end