Skip to content
代码片段 群组 项目
提交 2ed9bede 编辑于 作者: Kev Kloss's avatar Kev Kloss
浏览文件

Cache database once per pipeline

Every RSpec CI job uses the `setup_db` to set up a Postgres test
database. This takes about 1m 10s because the database has to be created
and then all migrations have to be applied.

In a pipeline that runs 150 RSpec jobs, this amounts to 3 hours of
work that is needlessly ran 150 times instead of once.

Therefore, this adds a CI job `db:setup pg14` that sets up a database
and makes it available as dump (using `pg_dumpall`) to all RSpec jobs
that test using Postgres 14.

By doing this, and applying the dump in each job with `psql`, we'll
reliably and (hopefully) permanently save about 50 seconds per RSpec
job, or about 3% of total job duration.
上级 b4193c77
No related branches found
No related tags found
无相关合并请求
include:
- local: .gitlab/ci/rails/shared.gitlab-ci.yml
db:setup pg14:
stage: prepare
needs: []
extends:
- .use-pg14
- .default-before_script
- .ruby-cache
- .rails:rules:setup-test-env
script:
- source scripts/utils.sh
- run_timed_command "pg_dumpall -h postgres -U postgres > pg_dumpall.sql"
artifacts:
paths:
- pg_dumpall.sql
db:rollback single-db-ci-connection:
extends:
- db:rollback
......
......@@ -210,6 +210,10 @@ include:
- !reference [.rspec-base, after_script]
.rspec-base-pg14:
needs:
- !reference [.rspec-base, needs]
- job: "db:setup pg14"
optional: true
extends:
- .rspec-base
- .use-pg14
......
......@@ -198,6 +198,16 @@ function setup_db_praefect() {
function setup_db() {
section_start "setup-db" "Setting up DBs"
if [ -f pg_dumpall.sql ]; then
echo "Found pg_dumpall.sql, applying!"
psql -h postgres -U postgres -q < pg_dumpall.sql > /dev/null
rm pg_dumpall.sql
section_end "setup-db"
return 0
fi
setup_db_user_only
run_timed_command_with_metric "bundle exec rake db:drop db:create db:schema:load db:migrate gitlab:db:lock_writes" "setup_db"
setup_db_praefect
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册