Skip to content

Instantly share code, notes, and snippets.

@flomotlik
Created November 15, 2012 15:25
Show Gist options
  • Save flomotlik/4079165 to your computer and use it in GitHub Desktop.
Save flomotlik/4079165 to your computer and use it in GitHub Desktop.
Our scaling logic
if open_jobs < idle_workers.count
scaledown_workers
elsif all_workers_working? && jobs_queued? && (instances_count - workers.count) < open_jobs
scaleup_workers
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment