mirror of
https://github.com/discourse/discourse.git
synced 2024-12-04 19:13:45 +08:00
5ac69076c1
* Remove unused `report_progress_in_percent` option from step * Remove `use_custom_progress_increment` option from the step because we can figure it out by looking at the progress * Introduce `StepTracker` to for logging warnings and errors and tracking step progress * Make it easier to log warnings and errors in all methods of `Step` without the need to pass around a `stats` object
33 lines
750 B
Ruby
33 lines
750 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Migrations::Converters::Base
|
|
class ParallelJob
|
|
def initialize(step)
|
|
@step = step
|
|
@tracker = step.tracker
|
|
|
|
@offline_connection = ::Migrations::Database::OfflineConnection.new
|
|
|
|
::Migrations::ForkManager.after_fork_child do
|
|
::Migrations::Database::IntermediateDB.setup(@offline_connection)
|
|
end
|
|
end
|
|
|
|
def run(item)
|
|
@tracker.reset_stats!
|
|
@offline_connection.clear!
|
|
|
|
begin
|
|
@step.process_item(item)
|
|
rescue StandardError => e
|
|
@tracker.log_error("Failed to process item", exception: e, details: item)
|
|
end
|
|
|
|
[@offline_connection.parametrized_insert_statements, @tracker.stats]
|
|
end
|
|
|
|
def cleanup
|
|
end
|
|
end
|
|
end
|