mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 10:48:51 +00:00
rb: Add control for the number of client processes in the benchmark
You control this with THRIFT_NUM_PROCESSES, the default is 40 git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@669038 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e4b780de36
commit
4b429ad86e
@ -239,7 +239,8 @@ args[:class] = resolve_const(ENV['THRIFT_SERVER']) || Thrift::NonblockingServer
|
||||
server = Server.new(args)
|
||||
server.start
|
||||
|
||||
args = { :num_processes => 40, :host => HOST, :port => PORT }
|
||||
args = { :host => HOST, :port => PORT }
|
||||
args[:num_processes] = (ENV['THRIFT_NUM_PROCESSES'] || 40).to_i
|
||||
args[:clients_per_process] = (ENV['THRIFT_NUM_CLIENTS'] || 5).to_i
|
||||
args[:calls_per_client] = (ENV['THRIFT_NUM_CALLS'] || 50).to_i
|
||||
args[:interpreter] = ENV['THRIFT_CLIENT_INTERPRETER'] || ENV['THRIFT_INTERPRETER'] || "ruby"
|
||||
|
Loading…
Reference in New Issue
Block a user