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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-12-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-11-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-12-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-09-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-08-11Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-08-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-06-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-06-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-10-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-08-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-06-25Fix background migrations failing with unused replication slotStan Hu
When there is an unused replication slot, the replication lag function will return a nil value, resulting in "NoMethodError: undefined method `>=' for nil:NilClass" error. We now just ignore these nil values. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/63666
2019-03-28Inherit from ApplicationRecord instead of ActiveRecord::BaseNick Thomas
2018-11-03Disable replication lag check for Aurora PostgreSQL databasesStan Hu
Replication slots are not supported in Aurora. Attempting to check the lag results in the message: ``` ActiveRecord::StatementInvalid: PG::FeatureNotSupported: ERROR: Replication slots are currently not supported in Aurora : SELECT pg_xlog_location_diff(pg_current_xlog_insert_location(), restart_lsn)::... ``` To avoid breaking support for background migrations in Aurora, we just disable the check if we encounter this error. This change also now checks whether there are any replication slots present in the primary before checking the replication lag. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/52176
2018-08-06Respond to DB health in background migrationsYorick Peterse
This changes the BackgroundMigration worker so it checks for the health of the DB before performing a background migration. This in turn allows us to reduce the minimum interval, without having to worry about blowing things up if we schedule too many migrations. In this setup, the BackgroundMigration worker will reschedule jobs as long as the database is considered to be in an unhealthy state. Once the database has recovered, the migration can be performed. To determine if the database is in a healthy state, we look at the replication lag of any replication slots defined on the primary. If the lag is deemed to great (100 MB by default) for too many slots, the migration is rescheduled for a later point in time. The health checking code is hidden behind a feature flag, allowing us to disable it if necessary.