Add new tables to the CI database
The pipeline data partitioning
design document describes how to partition existing tables in the CI domain. However,
you still need to add tables for new features. Sometimes these tables hold
references to larger tables that need to be partitioned. To reduce future
work, all tables that use a belongs_to association to partitionable tables
should be partitioned from the start.
Create a new routing table
Here is an example on how to use database helpers to create a new table and foreign keys:
  include Gitlab::Database::PartitioningMigrationHelpers
  disable_ddl_transaction!
  def up
    create_table(:p_ci_examples, primary_key: [:id, :partition_id], options: 'PARTITION BY LIST (partition_id)', if_not_exists: true) do |t|
      t.bigserial :id, null: false
      t.bigint :partition_id, null: false
      t.bigint :build_id, null: false
    end
    add_concurrent_partitioned_foreign_key(
      :p_ci_examples, :p_ci_builds,
      column: [:partition_id, :build_id],
      target_column: [:partition_id, :id],
      on_update: :cascade,
      on_delete: :cascade,
      reverse_lock_order: true
    )
  end
  def down
    drop_table :p_ci_examples
  endThis table is called a routing table and it does not hold any data. The data is stored in partitions.
When creating the routing table:
- The table name must start with the p_prefix. There are analyzers in place to ensure that all queries go through the routing tables and do not access the partitions directly.
- Each new table needs a partition_idcolumn and its value must equal the value from the related association. In this example, that isp_ci_builds. All resources belonging to a pipeline share the samepartition_idvalue.
- The primary key must have the columns ordered this way to allow efficient
search only by id.
- The foreign key constraint must include the ON UPDATE CASCADEoption because thepartition_idvalue should be able to update it for re-balancing the partitions.
Create the first partition
Usually, you rely on the application to create the initial partition at boot time. However, due to the high traffic on the CI tables and the large number of nodes, it can be difficult to acquire a lock on the referenced table. Consequently, during deployment, a node may fail to start. To prevent this failure, you must ensure that the partition is already in place before the application runs:
  disable_ddl_transaction!
  def up
    with_lock_retries do
      connection.execute(<<~SQL)
        LOCK TABLE p_ci_builds IN SHARE ROW EXCLUSIVE MODE;
        LOCK TABLE ONLY p_ci_examples IN ACCESS EXCLUSIVE MODE;
      SQL
      connection.execute(<<~SQL)
        CREATE TABLE IF NOT EXISTS gitlab_partitions_dynamic.ci_examples_100
          PARTITION OF p_ci_examples
          FOR VALUES IN (100);
      SQL
    end
  endPartitions are created in gitlab_partitions_dynamic schema.
When creating a partition, remember:
- Partition names do not use the p_prefix.
- The starting value for partition_idis100.
Cascade the partition value
To cascade the partition value, the module should use the Ci::Partitionable module:
class Ci::Example < Ci::ApplicationRecord
  include Ci::Partitionable
  self.table_name = :p_ci_examples
  self.primary_key = :id
  belongs_to :build, class_name: 'Ci::Build'
  partitionable scope: :build, partitioned: true
endManage partitions
The model must be included in the PARTITIONABLE_MODELS
list because it is used to test that the partition_id is
propagated correctly.
If it’s missing, specifying partitioned: true creates the first partition. The model also needs to be registered in the
postgres_partitioning.rb
initializer.