Class: Database::BatchedBackgroundMigrationWorker
- Inherits:
-
Object
- Object
- Database::BatchedBackgroundMigrationWorker
- Defined in:
- app/workers/database/batched_background_migration_worker.rb
Overview
rubocop:disable Scalability/IdempotentWorker
Constant Summary
Constants included from Database::BatchedBackgroundMigration::SingleDatabaseWorker
Database::BatchedBackgroundMigration::SingleDatabaseWorker::INTERVAL_VARIANCE, Database::BatchedBackgroundMigration::SingleDatabaseWorker::LEASE_TIMEOUT_MULTIPLIER, Database::BatchedBackgroundMigration::SingleDatabaseWorker::MINIMUM_LEASE_TIMEOUT
Constants included from ApplicationWorker
ApplicationWorker::LOGGING_EXTRA_KEY, ApplicationWorker::SAFE_PUSH_BULK_LIMIT
Constants included from WorkerAttributes
WorkerAttributes::DEFAULT_DATA_CONSISTENCY, WorkerAttributes::NAMESPACE_WEIGHTS, WorkerAttributes::VALID_DATA_CONSISTENCIES, WorkerAttributes::VALID_RESOURCE_BOUNDARIES, WorkerAttributes::VALID_URGENCIES
Class Method Summary collapse
Methods included from Database::BatchedBackgroundMigration::SingleDatabaseWorker
Methods included from Gitlab::SidekiqVersioning::Worker
Methods included from WorkerContext
Class Method Details
.enabled? ⇒ Boolean
7 8 9 |
# File 'app/workers/database/batched_background_migration_worker.rb', line 7 def self.enabled? Feature.enabled?(:execute_batched_migrations_on_schedule, type: :ops) end |
.tracking_database ⇒ Object
11 12 13 |
# File 'app/workers/database/batched_background_migration_worker.rb', line 11 def self.tracking_database @tracking_database ||= Gitlab::Database::MAIN_DATABASE_NAME.to_sym end |