debian-mirror-gitlab/db/migrate/20210430154631_add_slice_multiplier_and_max_slices_to_elastic_reindexing_task.rb
2021-06-08 01:23:25 +05:30

19 lines
618 B
Ruby

# 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