Quantcast
Channel: Understanding Background Workers with Redis, Sidekiq, Heroku and Rails 5 - Stack Overflow
Viewing all articles
Browse latest Browse all 2

Answer by Vasilisa for Understanding Background Workers with Redis, Sidekiq, Heroku and Rails 5

$
0
0

Best practices and convention is to place only one class inside one file with corresponding filename. No matters is it worker or any other class. If you want to organise them, you can wrap similar workers in a module and move them to a separate folder finance_worker:

 module FinanceWorker  
   class AnotherWorker
   end
 end

In this case you can call FinanceWorker::AnotherWorker.perform_async

UPDATE:

Create a separate folder finance_worker inside app/jobs and move there all needed worker files. Wrap all these worker classes in module FinanceWorker. I mean, wrap separately, still in different files, still only one class, wrapped in module, inside the file.

If you have 10 workers you have 10 files for them. But it is Sidekiq workers, not heroku workers, don't mix them up. To start Sidekiq you need only one line in Procfile: worker: bundle exec sidekiq. This line will start 1 heroku worker dyno for Sidekiq, which will start all his 10 workers. And it is OK, it is common practice. If you notice, that 1 dyno for Sidekiq is not enough, you always can add more, they will divide queues between each other.

And don't forget that you can specify queue name for worker. By default all jobs goes to general default queue. If you want that a worker has his own queue just add to sidekiq_options:

sidekiq_options retry: false, queue: 'finance'

Viewing all articles
Browse latest Browse all 2

Trending Articles