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

batch_optimizer_spec.rb « background_migration « database « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 95863ce3765b2008d771c378958785273ec01e5f (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Database::BackgroundMigration::BatchOptimizer do
  describe '#optimize' do
    subject { described_class.new(migration, number_of_jobs: number_of_jobs, ema_alpha: ema_alpha).optimize! }

    let(:migration) { create(:batched_background_migration, batch_size: batch_size, sub_batch_size: 100, interval: 120) }

    let(:batch_size) { 10_000 }

    let_it_be(:number_of_jobs) { 5 }
    let_it_be(:ema_alpha) { 0.4 }

    let_it_be(:target_efficiency) { described_class::TARGET_EFFICIENCY.max }

    def mock_efficiency(eff)
      expect(migration).to receive(:smoothed_time_efficiency).with(number_of_jobs: number_of_jobs, alpha: ema_alpha).and_return(eff)
    end

    it 'with unknown time efficiency, it keeps the batch size' do
      mock_efficiency(nil)

      expect { subject }.not_to change { migration.reload.batch_size }
    end

    it 'with a time efficiency of 95%, it keeps the batch size' do
      mock_efficiency(0.95)

      expect { subject }.not_to change { migration.reload.batch_size }
    end

    it 'with a time efficiency of 90%, it keeps the batch size' do
      mock_efficiency(0.9)

      expect { subject }.not_to change { migration.reload.batch_size }
    end

    it 'with a time efficiency of 85%, it increases the batch size' do
      time_efficiency = 0.85

      mock_efficiency(time_efficiency)

      new_batch_size = ((target_efficiency / time_efficiency) * batch_size).to_i

      expect { subject }.to change { migration.reload.batch_size }.from(batch_size).to(new_batch_size)
    end

    it 'with a time efficiency of 110%, it decreases the batch size' do
      time_efficiency = 1.1

      mock_efficiency(time_efficiency)

      new_batch_size = ((target_efficiency / time_efficiency) * batch_size).to_i

      expect { subject }.to change { migration.reload.batch_size }.from(batch_size).to(new_batch_size)
    end

    context 'reaching the upper limit for an increase' do
      it 'caps the batch size multiplier at 20% when increasing' do
        time_efficiency = 0.1  # this would result in a factor of 10 if not limited

        mock_efficiency(time_efficiency)

        new_batch_size = (1.2 * batch_size).to_i

        expect { subject }.to change { migration.reload.batch_size }.from(batch_size).to(new_batch_size)
      end

      it 'does not limit the decrease multiplier' do
        time_efficiency = 10

        mock_efficiency(time_efficiency)

        new_batch_size = (0.1 * batch_size).to_i

        expect { subject }.to change { migration.reload.batch_size }.from(batch_size).to(new_batch_size)
      end
    end

    context 'reaching the upper limit for the batch size' do
      let(:batch_size) { 1_950_000 }

      it 'caps the batch size at 10M' do
        mock_efficiency(0.7)

        expect { subject }.to change { migration.reload.batch_size }.to(2_000_000)
      end
    end

    context 'reaching the lower limit for the batch size' do
      let(:batch_size) { 1_050 }

      it 'caps the batch size at 1k' do
        mock_efficiency(1.1)

        expect { subject }.to change { migration.reload.batch_size }.to(1_000)
      end
    end
  end
end