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
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-06-16 21:25:58 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-06-16 21:25:58 +0300
commita5f4bba440d7f9ea47046a0a561d49adf0a1e6d4 (patch)
treefb69158581673816a8cd895f9d352dcb3c678b1e /app/helpers/admin/background_migrations_helper.rb
parentd16b2e8639e99961de6ddc93909f3bb5c1445ba1 (diff)
Add latest changes from gitlab-org/gitlab@14-0-stable-eev14.0.0-rc42
Diffstat (limited to 'app/helpers/admin/background_migrations_helper.rb')
-rw-r--r--app/helpers/admin/background_migrations_helper.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/app/helpers/admin/background_migrations_helper.rb b/app/helpers/admin/background_migrations_helper.rb
new file mode 100644
index 00000000000..698d81cc8a2
--- /dev/null
+++ b/app/helpers/admin/background_migrations_helper.rb
@@ -0,0 +1,27 @@
+# frozen_string_literal: true
+
+module Admin
+ module BackgroundMigrationsHelper
+ def batched_migration_status_badge_class_name(migration)
+ class_names = {
+ 'active' => 'badge-info',
+ 'paused' => 'badge-warning',
+ 'failed' => 'badge-danger',
+ 'finished' => 'badge-success'
+ }
+
+ class_names[migration.status]
+ end
+
+ # The extra logic here is needed because total_tuple_count is just
+ # an estimate and completed_rows also does not account for last jobs
+ # whose batch size is likely larger than the actual number of rows processed
+ def batched_migration_progress(migration, completed_rows)
+ return 100 if migration.finished?
+ return 0 unless completed_rows.to_i > 0
+ return unless migration.total_tuple_count.to_i > 0
+
+ [100 * completed_rows / migration.total_tuple_count, 99].min
+ end
+ end
+end