No commit activity in last 3 years
No release in over 3 years
Auto scale your resque workers on Heroku.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.0.6
~> 10.3.2
~> 3.1.0
~> 1.18.0

Runtime

~> 0.2.0
~> 1.25.2
 Project Readme

Code Climate

Dependency Status

Build Status (Travis CI)

Coverage Status

Gem Version

heroku-resque-workers-scaler

Auto scale your resque workers on Heroku. Original code by darkhelmet:

Modify by joel => https://github.com/joel

On fork => https://github.com/joel/heroku-resque-workers-scaler

Principals changes :

  • I've switched Jeweler Gem generator to simpel Bundler gem generator
  • I've switched to Rspec from TestUnit
  • I've switched to HerokuAPI Gem instead of Heroku Client Gem
  • Add safe mode for heroku
  • See CHANGELOG

Configuration :

You need to defined two vars for your heroku :

Go to your https://api.heroku.com/account

heroku config:add HEROKU_API_KEY=your_api_key -a your_app_name
heroku config:add HEROKU_APP_NAME=your_app_name -a your_app_name
heroku config:add SAFE_MODE=true -a your_app_name

Run localy

You can test when executed this :

export HEROKU_API_KEY=your_api_key
export HEROKU_APP_NAME=your_app_name
export SAFE_MODE=true
export ENVIRONMENT=development

open irb

irb -r heroku-resque-workers-scaler -I ./lib

play with commands

>> HerokuResqueAutoScale::Scaler.workers
=> 0
>> HerokuResqueAutoScale::Scaler.workers=1
=> 1
>> HerokuResqueAutoScale::Scaler.workers=0
=> 0

You can change the thresholds, environments of execution and the name of your worker process in your project on config/scaler_config.yml

Exmple YAML file contents:

mode: :thresholds # :fit, :half, :third
thresholds:
- :workers: 1
  :job_count: 1
- :workers: 2
  :job_count: 15
environments:
  - production
worker_name: resque
threshold: 100

if you use mode: :fit the number of job is exactly the same of available worker, :half the number of worker is 1/2 of number of job in queue, and for third 1/3

I just bundled it into a gem for easy inclusion into other projects.

Usage

Once the gem is installed, simply extend your job class as follows:

	class ScalingJob
		extend HerokuResqueAutoScale

		def self.perform
			# Do something long running
		end
	end

Active safe mode

When you ask heroku for scale down workers, heroku send SIGTERM and wait 4 secondes then send SIGKILL, but the worker catch signals can be currently work :( It's bad but Heroku not provide API for manage this case today, you can look arround this official article but in this gem if you defined var ENV['SAFE_MODE'] :

	heroku config:add SAFE_MODE=true -a your_app_name

Contributing to heroku-resque-workers-scaler

  • Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
  • Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
  • Fork the project
  • Start a feature/bugfix branch
  • Commit and push until you are happy with your contribution
  • Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

== Copyright

Copyright (c) 2010 Mark Quezada. See LICENSE.txt for further details.