Created
November 15, 2012 15:25
-
-
Save flomotlik/4079165 to your computer and use it in GitHub Desktop.
Our scaling logic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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