Search code examples
ruby-on-railsdelayed-jobthinking-sphinx

Can Thinking Sphinx delayed delta use a named delayed_job queue?


We need to have separate queues for different types of jobs. One of them is Thinking Sphinx delayed deltas. We could keep using the default queue but we rather use a specifically named queue. Can this be done?


Solution

  • Found the solution. In thinking_sphinx.yml add:

    development:
      .
      .
      delayed_job_queue: "<name>"
    

    Repeat for other environments.