debian-mirror-gitlab/spec/lib/gitlab/database/partitioning/partition_manager_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

307 lines
11 KiB
Ruby
Raw Normal View History

2021-09-30 23:02:18 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Gitlab::Database::Partitioning::PartitionManager do
include Database::PartitioningHelpers
include ExclusiveLeaseHelpers
2023-04-23 21:23:45 +05:30
let(:partitioned_table_name) { "_test_gitlab_main_my_model_example_table" }
2021-10-27 15:23:28 +05:30
2021-09-30 23:02:18 +05:30
context 'creating partitions (mocked)' do
2021-11-11 11:23:49 +05:30
subject(:sync_partitions) { described_class.new(model).sync_partitions }
2021-09-30 23:02:18 +05:30
2021-11-11 11:23:49 +05:30
let(:model) { double(partitioning_strategy: partitioning_strategy, table_name: table, connection: connection) }
let(:connection) { ActiveRecord::Base.connection }
2023-04-23 21:23:45 +05:30
let(:table) { partitioned_table_name }
2022-07-23 23:45:48 +05:30
let(:partitioning_strategy) do
double(missing_partitions: partitions, extra_partitions: [], after_adding_partitions: nil)
end
2021-09-30 23:02:18 +05:30
let(:partitions) do
[
instance_double(Gitlab::Database::Partitioning::TimePartition, table: 'bar', partition_name: 'foo', to_sql: "SELECT 1"),
instance_double(Gitlab::Database::Partitioning::TimePartition, table: 'bar', partition_name: 'foo2', to_sql: "SELECT 2")
]
end
2022-10-11 01:57:18 +05:30
context 'when the given table is partitioned' do
before do
create_partitioned_table(connection, table)
2021-09-30 23:02:18 +05:30
2022-10-11 01:57:18 +05:30
allow(connection).to receive(:table_exists?).and_call_original
allow(connection).to receive(:table_exists?).with(table).and_return(true)
allow(connection).to receive(:execute).and_call_original
expect(partitioning_strategy).to receive(:validate_and_fix)
stub_exclusive_lease(described_class::MANAGEMENT_LEASE_KEY % table, timeout: described_class::LEASE_TIMEOUT)
end
it 'creates the partition' do
expect(connection).to receive(:execute).with("LOCK TABLE \"#{table}\" IN ACCESS EXCLUSIVE MODE")
expect(connection).to receive(:execute).with(partitions.first.to_sql)
expect(connection).to receive(:execute).with(partitions.second.to_sql)
sync_partitions
end
context 'with eplicitly provided connection' do
let(:connection) { Ci::ApplicationRecord.connection }
it 'uses the explicitly provided connection when any' do
2023-04-23 21:23:45 +05:30
skip_if_multiple_databases_not_setup(:ci)
2022-10-11 01:57:18 +05:30
expect(connection).to receive(:execute).with("LOCK TABLE \"#{table}\" IN ACCESS EXCLUSIVE MODE")
expect(connection).to receive(:execute).with(partitions.first.to_sql)
expect(connection).to receive(:execute).with(partitions.second.to_sql)
described_class.new(model, connection: connection).sync_partitions
end
end
context 'when an error occurs during partition management' do
it 'does not raise an error' do
expect(partitioning_strategy).to receive(:missing_partitions).and_raise('this should never happen (tm)')
expect { sync_partitions }.not_to raise_error
end
end
2021-09-30 23:02:18 +05:30
end
2022-10-11 01:57:18 +05:30
context 'when the table is not partitioned' do
let(:table) { 'this_does_not_need_to_be_real_table' }
it 'does not try creating the partitions' do
expect(connection).not_to receive(:execute).with("LOCK TABLE \"#{table}\" IN ACCESS EXCLUSIVE MODE")
expect(Gitlab::AppLogger).to receive(:warn).with(
{
message: 'Skipping synching partitions',
table_name: table,
connection_name: 'main'
}
)
2021-09-30 23:02:18 +05:30
2022-10-11 01:57:18 +05:30
sync_partitions
2021-09-30 23:02:18 +05:30
end
end
end
context 'creating partitions' do
2021-11-11 11:23:49 +05:30
subject(:sync_partitions) { described_class.new(my_model).sync_partitions }
2021-09-30 23:02:18 +05:30
let(:connection) { ActiveRecord::Base.connection }
let(:my_model) do
Class.new(ApplicationRecord) do
include PartitionedTable
partitioned_by :created_at, strategy: :monthly
end
end
before do
2023-04-23 21:23:45 +05:30
my_model.table_name = partitioned_table_name
create_partitioned_table(connection, partitioned_table_name)
2021-09-30 23:02:18 +05:30
end
it 'creates partitions' do
expect { sync_partitions }.to change { find_partitions(my_model.table_name, schema: Gitlab::Database::DYNAMIC_PARTITIONS_SCHEMA).size }.from(0)
end
end
context 'detaching partitions (mocked)' do
subject(:sync_partitions) { manager.sync_partitions }
2021-11-11 11:23:49 +05:30
let(:manager) { described_class.new(model) }
let(:model) { double(partitioning_strategy: partitioning_strategy, table_name: table, connection: connection) }
let(:connection) { ActiveRecord::Base.connection }
2021-09-30 23:02:18 +05:30
let(:table) { "foo" }
2022-07-23 23:45:48 +05:30
let(:partitioning_strategy) do
double(extra_partitions: extra_partitions, missing_partitions: [], after_adding_partitions: nil)
end
2021-09-30 23:02:18 +05:30
before do
2022-10-11 01:57:18 +05:30
create_partitioned_table(connection, table)
2021-11-11 11:23:49 +05:30
allow(connection).to receive(:table_exists?).and_call_original
allow(connection).to receive(:table_exists?).with(table).and_return(true)
2022-07-23 23:45:48 +05:30
expect(partitioning_strategy).to receive(:validate_and_fix)
2021-09-30 23:02:18 +05:30
stub_exclusive_lease(described_class::MANAGEMENT_LEASE_KEY % table, timeout: described_class::LEASE_TIMEOUT)
end
let(:extra_partitions) do
[
2021-10-27 15:23:28 +05:30
instance_double(Gitlab::Database::Partitioning::TimePartition, table: table, partition_name: 'foo1', to_detach_sql: 'SELECT 1'),
instance_double(Gitlab::Database::Partitioning::TimePartition, table: table, partition_name: 'foo2', to_detach_sql: 'SELECT 2')
2021-09-30 23:02:18 +05:30
]
end
2022-01-26 12:08:38 +05:30
it 'detaches each extra partition' do
extra_partitions.each { |p| expect(manager).to receive(:detach_one_partition).with(p) }
2021-09-30 23:02:18 +05:30
2022-01-26 12:08:38 +05:30
sync_partitions
2021-09-30 23:02:18 +05:30
end
2022-07-23 23:45:48 +05:30
it 'logs an error if the partitions are not detachable' do
allow(Gitlab::Database::PostgresForeignKey).to receive(:by_referenced_table_identifier).with("public.foo")
.and_return([double(name: "fk_1", constrained_table_identifier: "public.constrainted_table_1")])
expect(Gitlab::AppLogger).to receive(:error).with(
{
message: "Failed to create / detach partition(s)",
connection_name: "main",
exception_class: Gitlab::Database::Partitioning::PartitionManager::UnsafeToDetachPartitionError,
exception_message:
"Cannot detach foo1, it would block while checking foreign key fk_1 on public.constrainted_table_1",
table_name: "foo"
}
)
sync_partitions
end
2021-09-30 23:02:18 +05:30
end
2021-10-27 15:23:28 +05:30
describe '#detach_partitions' do
around do |ex|
travel_to(Date.parse('2021-06-23')) do
ex.run
end
end
2021-11-11 11:23:49 +05:30
subject { described_class.new(my_model).sync_partitions }
2021-10-27 15:23:28 +05:30
let(:connection) { ActiveRecord::Base.connection }
let(:my_model) do
Class.new(ApplicationRecord) do
include PartitionedTable
partitioned_by :created_at, strategy: :monthly, retain_for: 1.month
end
end
before do
connection.execute(<<~SQL)
2023-04-23 21:23:45 +05:30
CREATE TABLE #{partitioned_table_name}
2021-10-27 15:23:28 +05:30
(id serial not null, created_at timestamptz not null, primary key (id, created_at))
PARTITION BY RANGE (created_at);
2023-04-23 21:23:45 +05:30
CREATE TABLE #{Gitlab::Database::DYNAMIC_PARTITIONS_SCHEMA}.#{partitioned_table_name}_202104
PARTITION OF #{partitioned_table_name}
2021-10-27 15:23:28 +05:30
FOR VALUES FROM ('2021-04-01') TO ('2021-05-01');
2023-04-23 21:23:45 +05:30
CREATE TABLE #{Gitlab::Database::DYNAMIC_PARTITIONS_SCHEMA}.#{partitioned_table_name}_202105
PARTITION OF #{partitioned_table_name}
2021-10-27 15:23:28 +05:30
FOR VALUES FROM ('2021-05-01') TO ('2021-06-01');
SQL
2023-04-23 21:23:45 +05:30
my_model.table_name = partitioned_table_name
2021-10-27 15:23:28 +05:30
# Also create all future partitions so that the sync is only trying to detach old partitions
my_model.partitioning_strategy.missing_partitions.each do |p|
connection.execute p.to_sql
end
end
def num_tables
connection.select_value(<<~SQL)
SELECT COUNT(*)
FROM pg_class
where relkind IN ('r', 'p')
SQL
end
it 'detaches exactly one partition' do
2021-11-18 22:05:49 +05:30
expect { subject }.to change { find_partitions(my_model.table_name).size }.from(9).to(8)
2021-10-27 15:23:28 +05:30
end
it 'detaches the old partition' do
expect { subject }.to change { has_partition(my_model, 2.months.ago.beginning_of_month) }.from(true).to(false)
end
it 'deletes zero tables' do
expect { subject }.not_to change { num_tables }
end
it 'creates the appropriate PendingPartitionDrop entry' do
subject
2023-04-23 21:23:45 +05:30
pending_drop = Postgresql::DetachedPartition.find_by!(table_name: "#{partitioned_table_name}_202104")
2021-10-27 15:23:28 +05:30
expect(pending_drop.drop_after).to eq(Time.current + described_class::RETAIN_DETACHED_PARTITIONS_FOR)
end
# Postgres 11 does not support foreign keys to partitioned tables
2021-12-11 22:18:48 +05:30
if ApplicationRecord.database.version.to_f >= 12
2021-10-27 15:23:28 +05:30
context 'when the model is the target of a foreign key' do
before do
connection.execute(<<~SQL)
2023-04-23 21:23:45 +05:30
create unique index idx_for_fk ON #{partitioned_table_name}(created_at);
2021-10-27 15:23:28 +05:30
2023-04-23 21:23:45 +05:30
create table _test_gitlab_main_referencing_table (
2021-10-27 15:23:28 +05:30
id bigserial primary key not null,
2023-04-23 21:23:45 +05:30
referencing_created_at timestamptz references #{partitioned_table_name}(created_at)
2021-10-27 15:23:28 +05:30
);
SQL
end
it 'does not detach partitions with a referenced foreign key' do
expect { subject }.not_to change { find_partitions(my_model.table_name).size }
end
end
end
end
context 'creating and then detaching partitions for a table' do
let(:connection) { ActiveRecord::Base.connection }
let(:my_model) do
Class.new(ApplicationRecord) do
include PartitionedTable
partitioned_by :created_at, strategy: :monthly, retain_for: 1.month
end
end
before do
2023-04-23 21:23:45 +05:30
my_model.table_name = partitioned_table_name
2021-10-27 15:23:28 +05:30
connection.execute(<<~SQL)
2023-04-23 21:23:45 +05:30
CREATE TABLE #{partitioned_table_name}
2021-10-27 15:23:28 +05:30
(id serial not null, created_at timestamptz not null, primary key (id, created_at))
PARTITION BY RANGE (created_at);
SQL
end
def num_partitions(model)
find_partitions(model.table_name, schema: Gitlab::Database::DYNAMIC_PARTITIONS_SCHEMA).size
end
it 'creates partitions for the future then drops the oldest one after a month' do
# 1 month for the current month, 1 month for the old month that we're retaining data for, headroom
expected_num_partitions = (Gitlab::Database::Partitioning::MonthlyStrategy::HEADROOM + 2.months) / 1.month
2021-11-11 11:23:49 +05:30
expect { described_class.new(my_model).sync_partitions }.to change { num_partitions(my_model) }.from(0).to(expected_num_partitions)
2021-10-27 15:23:28 +05:30
travel 1.month
2021-11-11 11:23:49 +05:30
expect { described_class.new(my_model).sync_partitions }.to change { has_partition(my_model, 2.months.ago.beginning_of_month) }.from(true).to(false).and(change { num_partitions(my_model) }.by(0))
2021-10-27 15:23:28 +05:30
end
end
2022-10-11 01:57:18 +05:30
2023-04-23 21:23:45 +05:30
def has_partition(model, month)
Gitlab::Database::PostgresPartition.for_parent_table(model.table_name).any? do |partition|
Gitlab::Database::Partitioning::TimePartition.from_sql(
model.table_name,
partition.name,
partition.condition
).from == month
end
end
2022-10-11 01:57:18 +05:30
def create_partitioned_table(connection, table)
connection.execute(<<~SQL)
CREATE TABLE #{table}
(id serial not null, created_at timestamptz not null, primary key (id, created_at))
PARTITION BY RANGE (created_at);
SQL
end
2021-09-30 23:02:18 +05:30
end