1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
|
#!/usr/bin/env ruby
# == Synopsis
#
# This tool can exercize a puppetmaster by simulating an arbitraty number of concurrent clients
# in a lightweight way.
#
# = Prerequisites
#
# This tool requires Event Machine and em-http-request, and an installation of Puppet.
# Event Machine can be installed from gem.
# em-http-request can be installed from gem.
#
# = Usage
#
# puppet-load [-d|--debug] [--concurrency <num>] [--repeat <num>] [-V|--version] [-v|--verbose]
# [--node <host.domain.com>] [--facts <factfile>] [--cert <certfile>] [--key <keyfile>]
# [--server <server.domain.com>]
#
# = Description
#
# This is a simple script meant for doing performance tests of puppet masters. It does this
# by simulating concurrent connections to a puppet master and asking for catalog compilation.
#
# = Options
#
# Unlike other puppet executables, puppet-load doesn't parse puppet.conf nor use puppet options
#
# debug::
# Enable full debugging.
#
# concurreny::
# Number of simulated concurrent clients.
#
# server::
# Set the puppet master hostname or IP address..
#
# node::
# Set the fully-qualified domain name of the client. This is only used for
# certificate purposes, but can be used to override the discovered hostname.
#
# help::
# Print this help message
#
# facts::
# This can be used to provide facts for the compilation, directly from a YAML
# file as found in the clientyaml directory. If none are provided, puppet-load
# will look by itself using Puppet facts indirector.
#
# cert::
# This option is mandatory. It should be set to the cert PEM file that will be used
# to quthenticate the client connections.
#
# key::
# This option is mandatory. It should be set to the private key PEM file that will be used
# to quthenticate the client connections.
#
# timeout::
# The number of seconds after which a simulated client is declared in error if it didn't get
# a catalog. The default is 180s.
#
# repeat::
# How many times to perform the test. This means puppet-load will ask for
# concurrency * repeat catalogs.
#
# verbose::
# Turn on verbose reporting.
#
# version::
# Print the puppet version number and exit.
#
# = Example usage
#
# 1) On the master host, generate a new certificate and private key for our test host:
# puppet ca --generate puppet-load.domain.com [*]
#
# 2) Copy the cert and key to the puppet-load host (which can be the same as the master one)
#
# 3) On the master host edit or create the auth.conf so that the catalog ACL match:
# path ~ ^/catalog/([^/]+)$
# method find
# allow $1
# allow puppet-load.domain.com
#
# 4) launch the master
#
# 5) Prepare or get a fact file. One way to get one is to look on the master in $vardir/yaml/ for the host
# you want to simulate.
#
# 5) launch puppet-load
# puppet-load -debug --node server.domain.com --server master.domain.com --facts server.domain.com.yaml --concurrency 2 --repeat 20
#
# [*]: unfortunately at this stage Puppet trusts the certname of the connecting node more than
# than the node name request paramater. It means that the master will compile
# the puppet-load node and not the --node given.
#
# = TODO
# * Allow to simulate any different nodes
# * More output stats for error connections (ie report errors, HTTP code...)
#
#
# Do an initial trap, so that cancels don't get a stack trace.
trap(:INT) do
$stderr.puts "Cancelling startup"
exit(1)
end
require 'rubygems'
require 'eventmachine'
require 'em-http'
require 'getoptlong'
require 'puppet'
$cmdargs = [
[ "--concurrency", "-c", GetoptLong::REQUIRED_ARGUMENT ],
[ "--node", "-n", GetoptLong::REQUIRED_ARGUMENT ],
[ "--facts", GetoptLong::REQUIRED_ARGUMENT ],
[ "--repeat", "-r", GetoptLong::REQUIRED_ARGUMENT ],
[ "--cert", "-C", GetoptLong::REQUIRED_ARGUMENT ],
[ "--key", "-k", GetoptLong::REQUIRED_ARGUMENT ],
[ "--timeout", "-t", GetoptLong::REQUIRED_ARGUMENT ],
[ "--server", "-s", GetoptLong::REQUIRED_ARGUMENT ],
[ "--debug", "-d", GetoptLong::NO_ARGUMENT ],
[ "--help", "-h", GetoptLong::NO_ARGUMENT ],
[ "--verbose", "-v", GetoptLong::NO_ARGUMENT ],
[ "--version", "-V", GetoptLong::NO_ARGUMENT ],
]
Puppet::Util::Log.newdestination(:console)
times = {}
def read_facts(file)
YAML.load(File.read(file))
end
result = GetoptLong.new(*$cmdargs)
$args = {}
$options = {:repeat => 1, :concurrency => 1, :pause => false, :cert => nil, :key => nil, :timeout => 180, :masterport => 8140}
begin
result.each { |opt,arg|
case opt
when "--concurrency"
begin
$options[:concurrency] = Integer(arg)
rescue => detail
$stderr.puts "The argument to 'fork' must be an integer"
exit(14)
end
when "--node"
$options[:node] = arg
when "--server"
$options[:server] = arg
when "--masterport"
$options[:masterport] = arg
when "--facts"
$options[:facts] = arg
when "--repeat"
$options[:repeat] = Integer(arg)
when "--help"
if Puppet.features.usage?
RDoc::usage && exit
else
puts "No help available unless you have RDoc::usage installed"
exit
end
when "--version"
puts "%s" % Puppet.version
exit
when "--verbose"
Puppet::Util::Log.level = :info
Puppet::Util::Log.newdestination(:console)
when "--debug"
Puppet::Util::Log.level = :debug
Puppet::Util::Log.newdestination(:console)
when "--cert"
$options[:cert] = arg
when "--key"
$options[:key] = arg
end
}
rescue GetoptLong::InvalidOption => detail
$stderr.puts detail
$stderr.puts "Try '#{$0} --help'"
exit(1)
end
unless $options[:cert] and $options[:key]
raise "--cert and --key are mandatory to authenticate the client"
end
unless $options[:facts] and facts = read_facts($options[:facts])
unless facts = Puppet::Node::Facts.find($options[:node])
raise "Could not find facts for %s" % $options[:node]
end
end
unless $options[:node]
raise "--node is a mandatory argument. It tells to the master what node to compile"
end
facts.values["fqdn"] = $options[:node]
facts.values["hostname"] = $options[:node].sub(/\..+/, '')
facts.values["domain"] = $options[:node].sub(/^[^.]+\./, '')
parameters = {:facts_format => "b64_zlib_yaml", :facts => CGI.escape(facts.render(:b64_zlib_yaml))}
class RequestPool
include EventMachine::Deferrable
attr_reader :requests, :responses, :times, :sizes
attr_reader :repeat, :concurrency, :max_request
def initialize(concurrency, repeat, parameters)
@parameters = parameters
@current_request = 0
@max_request = repeat * concurrency
@repeat = repeat
@concurrency = concurrency
@requests = []
@responses = {:succeeded => [], :failed => []}
@times = {}
@sizes = {}
# initial spawn
(1..concurrency).each do |i|
spawn
end
end
def spawn_request(index)
EventMachine::HttpRequest.new("https://#{$options[:server]}:#{$options[:masterport]}/production/catalog/#{$options[:node]}").get(
:port => $options[:masterport],
:query => @parameters,
:timeout => $options[:timeout],
:head => { "Accept" => "pson, yaml, b64_zlib_yaml, marshal, dot, raw", "Accept-Encoding" => "gzip, deflate" },
:ssl => { :private_key_file => $options[:key],
:cert_chain_file => $options[:cert],
:verify_peer => false } ) do
Puppet.debug("starting client #{index}")
@times[index] = Time.now
@sizes[index] = 0
end
end
def add(index, conn)
@requests.push(conn)
conn.stream { |data|
@sizes[index] += data.length
}
conn.callback {
@times[index] = Time.now - @times[index]
code = conn.response_header.status
if code >= 200 && code < 300
Puppet.debug("Client #{index} finished successfully")
@responses[:succeeded].push(conn)
else
Puppet.debug("Client #{index} finished with HTTP code #{code}")
@responses[:failed].push(conn)
end
check_progress
}
conn.errback {
Puppet.debug("Client #{index} finished with an error: #{conn.response.error}")
@times[index] = Time.now - @times[index]
@responses[:failed].push(conn)
check_progress
}
end
def all_responses
@responses[:succeeded] + @responses[:failed]
end
protected
def check_progress
spawn unless all_spawned?
succeed if all_finished?
end
def all_spawned?
@requests.size >= max_request
end
def all_finished?
@responses[:failed].size + @responses[:succeeded].size >= max_request
end
def spawn
add(@current_request, spawn_request(@current_request))
@current_request += 1
end
end
def mean(array)
array.inject(0) { |sum, x| sum += x } / array.size.to_f
end
def median(array)
array = array.sort
m_pos = array.size / 2
return array.size % 2 == 1 ? array[m_pos] : mean(array[m_pos-1..m_pos])
end
def format_bytes(bytes)
if bytes < 1024
"%.2f B" % bytes
elsif bytes < 1024 * 1024
"%.2f KiB" % (bytes/1024.0)
else
"%.2f MiB" % (bytes/(1024.0*1024.0))
end
end
EM::run {
start = Time.now
multi = RequestPool.new($options[:concurrency], $options[:repeat], parameters)
multi.callback do
duration = Time.now - start
puts "#{multi.max_request} requests finished in #{duration} s"
puts "#{multi.responses[:failed].size} requests failed"
puts "Availability: %3.2f %%" % (100.0*multi.responses[:succeeded].size/(multi.responses[:succeeded].size+multi.responses[:failed].size))
minmax = multi.times.values.minmax
all_time = multi.times.values.reduce(:+)
puts "\nTime (s):"
puts "\tmin: #{minmax[0]} s"
puts "\tmax: #{minmax[1]} s"
puts "\taverage: #{mean(multi.times.values)} s"
puts "\tmedian: #{median(multi.times.values)} s"
puts "\nConcurrency: %.2f" % (all_time/duration)
puts "Transaction Rate (tps): %.2f t/s" % (multi.max_request / duration)
transferred = multi.sizes.values.reduce(:+)
puts "\nReceived bytes: #{format_bytes(transferred)}"
puts "Throughput: %.5f MiB/s" % (transferred/duration/(1024.0*1024.0))
# this is the end
EventMachine.stop
end
}
|