# frozen_string_literal: true module GoodJob # # ActiveJob Adapter. # class Adapter # Valid execution modes. EXECUTION_MODES = [:async, :async_server, :external, :inline].freeze # @param execution_mode [Symbol, nil] specifies how and where jobs should be executed. You can also set this with the environment variable +GOOD_JOB_EXECUTION_MODE+. # # - +:inline+ executes jobs immediately in whatever process queued them (usually the web server process). This should only be used in test and development environments. # - +:external+ causes the adapter to enqueue jobs, but not execute them. When using this option (the default for production environments), you'll need to use the command-line tool to actually execute your jobs. # - +:async_server+ executes jobs in separate threads within the Rails webserver process (`bundle exec rails server`). It can be more economical for small workloads because you don't need a separate machine or environment for running your jobs, but if your web server is under heavy load or your jobs require a lot of resources, you should choose +:external+ instead. # When not in the Rails webserver, jobs will execute in +:external+ mode to ensure jobs are not executed within `rails console`, `rails db:migrate`, `rails assets:prepare`, etc. # - +:async+ executes jobs in any Rails process. # # The default value depends on the Rails environment: # # - +development+ and +test+: +:inline+ # - +production+ and all other environments: +:external+ # # @param max_threads [Integer, nil] sets the number of threads per scheduler to use when +execution_mode+ is set to +:async+. The +queues+ parameter can specify a number of threads for each group of queues which will override this value. You can also set this with the environment variable +GOOD_JOB_MAX_THREADS+. Defaults to +5+. # @param queues [String, nil] determines which queues to execute jobs from when +execution_mode+ is set to +:async+. See {file:README.md#optimize-queues-threads-and-processes} for more details on the format of this string. You can also set this with the environment variable +GOOD_JOB_QUEUES+. Defaults to +"*"+. # @param poll_interval [Integer, nil] sets the number of seconds between polls for jobs when +execution_mode+ is set to +:async+. You can also set this with the environment variable +GOOD_JOB_POLL_INTERVAL+. Defaults to +1+. def initialize(execution_mode: nil, queues: nil, max_threads: nil, poll_interval: nil) if caller[0..4].find { |c| c.include?("/config/application.rb") || c.include?("/config/environments/") } ActiveSupport::Deprecation.warn(<<~DEPRECATION) GoodJob no longer recommends creating a GoodJob::Adapter instance: config.active_job.queue_adapter = GoodJob::Adapter.new... Instead, configure GoodJob through configuration: config.active_job.queue_adapter = :good_job config.good_job.execution_mode = :#{execution_mode} config.good_job.max_threads = #{max_threads} config.good_job.poll_interval = #{poll_interval} # etc... DEPRECATION end @configuration = GoodJob::Configuration.new( { execution_mode: execution_mode, queues: queues, max_threads: max_threads, poll_interval: poll_interval, } ) @configuration.validate! if execute_async? # rubocop:disable Style/GuardClause @notifier = GoodJob::Notifier.new @poller = GoodJob::Poller.new(poll_interval: @configuration.poll_interval) @scheduler = GoodJob::Scheduler.from_configuration(@configuration, warm_cache_on_initialize: Rails.application.initialized?) @notifier.recipients << [@scheduler, :create_thread] @poller.recipients << [@scheduler, :create_thread] @cron_manager = GoodJob::CronManager.new(@configuration.cron, start_on_initialize: Rails.application.initialized?) if @configuration.enable_cron? end end # Enqueues the ActiveJob job to be performed. # For use by Rails; you should generally not call this directly. # @param active_job [ActiveJob::Base] the job to be enqueued from +#perform_later+ # @return [GoodJob::Job] def enqueue(active_job) enqueue_at(active_job, nil) end # Enqueues an ActiveJob job to be run at a specific time. # For use by Rails; you should generally not call this directly. # @param active_job [ActiveJob::Base] the job to be enqueued from +#perform_later+ # @param timestamp [Integer, nil] the epoch time to perform the job # @return [GoodJob::Job] def enqueue_at(active_job, timestamp) good_job = GoodJob::Job.enqueue( active_job, scheduled_at: timestamp ? Time.zone.at(timestamp) : nil, create_with_advisory_lock: execute_inline? ) if execute_inline? begin good_job.perform ensure good_job.advisory_unlock end else job_state = { queue_name: good_job.queue_name } job_state[:scheduled_at] = good_job.scheduled_at if good_job.scheduled_at executed_locally = execute_async? && @scheduler.create_thread(job_state) Notifier.notify(job_state) unless executed_locally end good_job end # Shut down the thread pool executors. # @param timeout [nil, Numeric, Symbol] Seconds to wait for active threads. # * +nil+, the scheduler will trigger a shutdown but not wait for it to complete. # * +-1+, the scheduler will wait until the shutdown is complete. # * +0+, the scheduler will immediately shutdown and stop any threads. # * A positive number will wait that many seconds before stopping any remaining active threads. # @param wait [Boolean, nil] Deprecated. Use +timeout:+ instead. # @return [void] def shutdown(timeout: :default, wait: nil) timeout = if wait.nil? timeout else ActiveSupport::Deprecation.warn( "Using `GoodJob::Adapter.shutdown` with `wait:` kwarg is deprecated; use `timeout:` kwarg instead e.g. GoodJob::Adapter.shutdown(timeout: #{wait ? '-1' : 'nil'})" ) wait ? -1 : nil end timeout = if timeout == :default @configuration.shutdown_timeout else timeout end executables = [@notifier, @poller, @scheduler].compact GoodJob._shutdown_all(executables, timeout: timeout) end # Whether in +:async+ execution mode. # @return [Boolean] def execute_async? @configuration.execution_mode.in?([:async, :async_all]) || @configuration.execution_mode == :async_server && in_server_process? end # Whether in +:external+ execution mode. # @return [Boolean] def execute_externally? @configuration.execution_mode == :external || @configuration.execution_mode == :async_server && !in_server_process? end # Whether in +:inline+ execution mode. # @return [Boolean] def execute_inline? @configuration.execution_mode == :inline end private # Whether running in a web server process. # @return [Boolean, nil] def in_server_process? return @_in_server_process if defined? @_in_server_process @_in_server_process = Rails.const_defined?('Server') || caller.grep(%r{config.ru}).any? || # EXAMPLE: config.ru:3:in `block in
' OR config.ru:3:in `new_from_string' caller.grep(%{/rack/handler/}).any? || # EXAMPLE: iodine-0.7.44/lib/rack/handler/iodine.rb:13:in `start' (Concurrent.on_jruby? && caller.grep(%r{jruby/rack/rails_booter}).any?) # EXAMPLE: uri:classloader:/jruby/rack/rails_booter.rb:83:in `load_environment' end end end