From c6ab297f15b3853df90572f7c86b802b06941da5 Mon Sep 17 00:00:00 2001 From: gdk Date: Sun, 14 Sep 2025 23:36:12 +0000 Subject: [PATCH] Update table_size database dictionary entries Updates database dictionary entries for `ci_pipeline_metadata, p_ci_job_messages`. The classification of table size changed as defined in the [database dictionary](https://docs.gitlab.com/development/database/database_dictionary/#schema). Read more about our process to classify table size in our [documentation](https://docs.gitlab.com/ee/development/database/large_tables_limitations.html). Verify this MR by inspecting the `postgres_table_sizes` view for each affected table. This change was generated by [gitlab-housekeeper](https://gitlab.com/gitlab-org/gitlab/-/tree/master/gems/gitlab-housekeeper) in [CI](https://ops.gitlab.net/gitlab-com/database-team/gitlab-com-database-testing/-/jobs/20265940) using the `Keeps::UpdateTableSizes` keep. To provide feedback on your experience with `gitlab-housekeeper` please create an issue with the label ~"GitLab Housekeeper" and consider pinging the author of this keep. Changelog: added --- db/docs/ci_pipeline_metadata.yml | 2 +- db/docs/p_ci_job_messages.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/db/docs/ci_pipeline_metadata.yml b/db/docs/ci_pipeline_metadata.yml index 66ef6ddac5191f..06d771235e17b9 100644 --- a/db/docs/ci_pipeline_metadata.yml +++ b/db/docs/ci_pipeline_metadata.yml @@ -10,4 +10,4 @@ milestone: '15.5' gitlab_schema: gitlab_ci sharding_key: project_id: projects -table_size: small +table_size: medium diff --git a/db/docs/p_ci_job_messages.yml b/db/docs/p_ci_job_messages.yml index b76e599a69fbb7..1cd8fa01077311 100644 --- a/db/docs/p_ci_job_messages.yml +++ b/db/docs/p_ci_job_messages.yml @@ -10,3 +10,4 @@ milestone: '18.4' gitlab_schema: gitlab_ci sharding_key: project_id: projects +table_size: small -- GitLab