Skip to content

Instantly share code, notes, and snippets.

View leecardona's full-sized avatar
🏠
Chillin at home

Lee Cardona leecardona

🏠
Chillin at home
View GitHub Profile
@flomotlik
flomotlik / Scaler.rb
Created November 15, 2012 15:25
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