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
2018-12-12Fix ActiveRecord::Migration deprecationsYorick Peterse
Extending from ActiveRecord::Migration is deprecated, but was still used in a bunch of places.
2018-09-06Resolve "CE documentation is not CommonMark compliant"Brett Walker
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.
2018-07-24Add points regarding background migrations on huge tablesOswaldo Ferreira
2018-04-27Fixed typosPascal Borreli
2018-04-18Add more detail to cleanup steps for background migrationsSean McGivern
1. We can't just steal from the queue, in case there was a problem with Sidekiq. 2. We need to consider import / export.
2018-02-08[docs] Info rescheduling background migrationsBob Van Landuyt
2018-01-19doc: Spelling fixesVille Skyttä
2017-12-05Consistently schedule Sidekiq jobsDouwe Maan
2017-09-25Document manual cleanup after background migration stealingSean McGivern
2017-08-04Update the update guides for background migrationsYorick Peterse
The introduction of background migrations means some of our requirements for online upgrades have to be adjusted / clarified. See https://gitlab.com/gitlab-org/gitlab-ce/issues/35939 for more information.
2017-07-21Copy-edit background migrations guidelinesGrzegorz Bizon
2017-07-20Extend background migration development guidelinesGrzegorz Bizon
2017-07-07Improve code examples in background migrations docsGrzegorz Bizon
2017-07-07Make it possible to schedule bg migrations in bulkGrzegorz Bizon
2017-06-12Add the ability to perform background migrationsYorick Peterse
Background migrations can be used to perform long running data migrations without these blocking a deployment procedure. See MR https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/11854 for more information.