Class: Gitlab::BackgroundMigration::LegacyUploadsMigrator
- Inherits:
-
Object
- Object
- Gitlab::BackgroundMigration::LegacyUploadsMigrator
- Includes:
- Database::MigrationHelpers
- Defined in:
- lib/gitlab/background_migration/legacy_uploads_migrator.rb
Overview
This migration takes all legacy uploads (that were uploaded using AttachmentUploader) and migrate them to the new (FileUploader) location (=under projects).
We have dependencies (uploaders) in this migration because extracting code would add a lot of complexity and possible errors could appear as the logic in the uploaders is not trivial.
This migration will be removed in 13.0 in order to get rid of a migration that depends on the application code.
Constant Summary
Constants included from Database::MigrationHelpers
Database::MigrationHelpers::DEFAULT_TIMESTAMP_COLUMNS
Constants included from Database::DynamicModelHelpers
Database::DynamicModelHelpers::BATCH_SIZE
Constants included from Database::Migrations::SidekiqHelpers
Database::Migrations::SidekiqHelpers::DEFAULT_MAX_ATTEMPTS, Database::Migrations::SidekiqHelpers::DEFAULT_TIMES_IN_A_ROW
Constants included from Database::Migrations::ConstraintsHelpers
Database::Migrations::ConstraintsHelpers::MAX_IDENTIFIER_NAME_LENGTH
Constants included from Database::Migrations::BatchedBackgroundMigrationHelpers
Database::Migrations::BatchedBackgroundMigrationHelpers::BATCH_CLASS_NAME, Database::Migrations::BatchedBackgroundMigrationHelpers::BATCH_MIN_DELAY, Database::Migrations::BatchedBackgroundMigrationHelpers::BATCH_MIN_VALUE, Database::Migrations::BatchedBackgroundMigrationHelpers::BATCH_SIZE, Database::Migrations::BatchedBackgroundMigrationHelpers::SUB_BATCH_SIZE
Constants included from Database::Migrations::BackgroundMigrationHelpers
Database::Migrations::BackgroundMigrationHelpers::BATCH_SIZE, Database::Migrations::BackgroundMigrationHelpers::JOB_BUFFER_SIZE
Instance Method Summary collapse
Methods included from Database::MigrationHelpers
#add_concurrent_foreign_key, #add_concurrent_index, #add_primary_key_using_index, #add_sequence, #add_timestamps_with_timezone, #backfill_conversion_of_integer_to_bigint, #backfill_iids, #change_column_type_concurrently, #check_trigger_permissions!, #cleanup_concurrent_column_rename, #cleanup_concurrent_column_type_change, #column_for, #concurrent_foreign_key_name, #convert_to_bigint_column, #convert_to_type_column, #copy_foreign_keys, #copy_indexes, #create_or_update_plan_limit, #create_table_with_constraints, #create_temporary_columns_and_triggers, #define_batchable_model, #drop_sequence, #each_batch, #each_batch_range, #false_value, #foreign_key_exists?, #foreign_keys_for, #index_exists_by_name?, #index_invalid?, #indexes_for, #initialize_conversion_of_integer_to_bigint, #install_rename_triggers, #partition?, #postgres_exists_by_name?, #remove_concurrent_index, #remove_concurrent_index_by_name, #remove_foreign_key_if_exists, #remove_foreign_key_without_error, #remove_rename_triggers, #remove_timestamps, #rename_column_concurrently, #rename_trigger_name, #replace_sql, #restore_conversion_of_integer_to_bigint, #revert_backfill_conversion_of_integer_to_bigint, #revert_initialize_conversion_of_integer_to_bigint, #swap_primary_key, #true_value, #undo_change_column_type_concurrently, #undo_cleanup_concurrent_column_rename, #undo_cleanup_concurrent_column_type_change, #undo_rename_column_concurrently, #update_column_in_batches, #validate_foreign_key
Methods included from Database::AsyncIndexes::MigrationHelpers
#async_index_creation_available?, #prepare_async_index, #prepare_async_index_removal, #unprepare_async_index, #unprepare_async_index_by_name
Methods included from Database::RenameTableHelpers
#finalize_table_rename, #rename_table_safely, #undo_finalize_table_rename, #undo_rename_table_safely
Methods included from Database::DynamicModelHelpers
#define_batchable_model, #each_batch, #each_batch_range
Methods included from Database::Migrations::SidekiqHelpers
#sidekiq_queue_length, #sidekiq_queue_migrate, #sidekiq_remove_jobs
Methods included from Database::Migrations::ExtensionHelpers
#create_extension, #drop_extension
Methods included from Database::Migrations::ConstraintsHelpers
#add_check_constraint, #add_not_null_constraint, #add_text_limit, #check_constraint_exists?, #check_constraint_name, #check_not_null_constraint_exists?, #check_text_limit_exists?, #copy_check_constraints, #drop_constraint, #remove_check_constraint, #remove_not_null_constraint, #remove_text_limit, #rename_constraint, #text_limit_name, #validate_check_constraint, #validate_check_constraint_name!, #validate_not_null_constraint, #validate_text_limit
Methods included from Database::Migrations::TimeoutHelpers
Methods included from Database::Migrations::LockRetriesHelpers
Methods included from Database::Migrations::BatchedBackgroundMigrationHelpers
#delete_batched_background_migration, #ensure_batched_background_migration_is_finished, #finalize_batched_background_migration, #gitlab_schema_from_context, #queue_batched_background_migration
Methods included from Database::Migrations::BackgroundMigrationHelpers
#delete_job_tracking, #delete_queued_jobs, #finalize_background_migration, #migrate_in, #queue_background_migration_jobs_by_range_at_intervals, #requeue_background_migration_jobs_by_range_at_intervals
Methods included from Database::Migrations::ReestablishedConnectionStack
#with_restored_connection_stack
Instance Method Details
#perform(start_id, end_id) ⇒ Object
16 17 18 19 20 |
# File 'lib/gitlab/background_migration/legacy_uploads_migrator.rb', line 16 def perform(start_id, end_id) Upload.where(id: start_id..end_id, uploader: 'AttachmentUploader', model_type: 'Note').find_each do |upload| LegacyUploadMover.new(upload).execute end end |