Skip to Content Skip to Search

Backburner adapter for Active Job

Backburner is a beanstalkd-powered job queue that can handle a very high volume of jobs. You create background jobs and place them on multiple work queues to be processed later. Read more about Backburner here.

To use Backburner set the queue_adapter config to :backburner.

Rails.application.config.active_job.queue_adapter = :backburner
Methods
C

Instance Public methods

check_adapter()

# File activejob/lib/active_job/queue_adapters/backburner_adapter.rb, line 18
      def check_adapter
        ActiveJob.deprecator.warn <<~MSG.squish
          The built-in `backburner` adapter is deprecated and will be removed in Rails 9.0.
          Please upgrade `backburner` gem to version 1.7 or later to use the `backburner` gem's adapter.
        MSG
      end