OstRunner is an ActiveJob QueueAdapter to run ActiveJob using my preferred queueing backend: Ost.
Add this line to your application's Gemfile:
gem 'ost_runner'
And then execute:
$ bundle
You can easily set your queuing backend:
# config/application.rb
module YourApp
class Application < Rails::Application
config.active_job.queue_adapter = :ost
end
end
There are three tasks to start/stop the runner:
rails ost_runner:start # Listens to and executes ActiveJob Ost jobs
rails ost_runner:start_as_daemon # Listens to and executes ActiveJob Ost jobs as a daemon
rails ost_runner:stop # Stops a worker running as a daemon
Exceptions are not caught
Bug reports and pull requests are welcome on GitHub at https://github.com/srabuini/ost_runner. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.