Created
January 19, 2016 18:59
-
-
Save glarizza/0aa9b5ffb0949a4e9b36 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env ruby | |
require 'thread' | |
require 'yaml' | |
if ARGV.size != 2 | |
puts "You must run this script with two arguments: Concurrency, and the Total Number of Runs to Perform" | |
exit 1 | |
end | |
CONCURRENCY = ARGV[0].to_i | |
@threads = [] | |
@classifications = [] | |
@nodes_mutex = Mutex.new | |
@total_runs = ARGV[1].to_i | |
def get_a_node | |
number = 1 + Random.rand(300) | |
"user#{number}-rc-agent-27.us-west-2.compute.internal" | |
end | |
def perform_runs(total_runs) | |
while @total_runs > 0 | |
CONCURRENCY.times.each do | |
@threads << Thread.new(@classifications) do |i| | |
output = YAML.load(%x{./external_node.rb #{get_a_node}}) | |
@nodes_mutex.synchronize { @classifications << output } | |
end | |
end | |
@threads.each(&:join) | |
@total_runs = @total_runs - CONCURRENCY | |
end | |
end | |
perform_runs(@total_runs) | |
File.open('last_run.yaml', 'w') do |f| | |
f.write @classifications.to_yaml | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment