fl-thrift 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +4 -0
- data/Manifest +81 -0
- data/README +43 -0
- data/Rakefile +102 -0
- data/benchmark/Benchmark.thrift +24 -0
- data/benchmark/benchmark.rb +271 -0
- data/benchmark/client.rb +74 -0
- data/benchmark/server.rb +82 -0
- data/benchmark/thin_server.rb +44 -0
- data/ext/binary_protocol_accelerated.c +474 -0
- data/ext/binary_protocol_accelerated.h +20 -0
- data/ext/compact_protocol.c +665 -0
- data/ext/compact_protocol.h +20 -0
- data/ext/constants.h +95 -0
- data/ext/extconf.rb +26 -0
- data/ext/macros.h +41 -0
- data/ext/memory_buffer.c +76 -0
- data/ext/memory_buffer.h +20 -0
- data/ext/protocol.c +185 -0
- data/ext/protocol.h +20 -0
- data/ext/struct.c +606 -0
- data/ext/struct.h +67 -0
- data/ext/thrift_native.c +194 -0
- data/lib/thrift.rb +59 -0
- data/lib/thrift/client.rb +62 -0
- data/lib/thrift/core_ext.rb +23 -0
- data/lib/thrift/core_ext/fixnum.rb +29 -0
- data/lib/thrift/exceptions.rb +82 -0
- data/lib/thrift/processor.rb +57 -0
- data/lib/thrift/protocol/base_protocol.rb +290 -0
- data/lib/thrift/protocol/binary_protocol.rb +225 -0
- data/lib/thrift/protocol/binary_protocol_accelerated.rb +35 -0
- data/lib/thrift/protocol/compact_protocol.rb +422 -0
- data/lib/thrift/serializer/deserializer.rb +33 -0
- data/lib/thrift/serializer/serializer.rb +34 -0
- data/lib/thrift/server/base_server.rb +31 -0
- data/lib/thrift/server/mongrel_http_server.rb +58 -0
- data/lib/thrift/server/nonblocking_server.rb +296 -0
- data/lib/thrift/server/simple_server.rb +43 -0
- data/lib/thrift/server/thread_pool_server.rb +75 -0
- data/lib/thrift/server/threaded_server.rb +47 -0
- data/lib/thrift/struct.rb +298 -0
- data/lib/thrift/thrift_native.rb +24 -0
- data/lib/thrift/transport/base_server_transport.rb +37 -0
- data/lib/thrift/transport/base_transport.rb +70 -0
- data/lib/thrift/transport/buffered_transport.rb +77 -0
- data/lib/thrift/transport/framed_transport.rb +90 -0
- data/lib/thrift/transport/http_client_transport.rb +45 -0
- data/lib/thrift/transport/io_stream_transport.rb +39 -0
- data/lib/thrift/transport/memory_buffer_transport.rb +96 -0
- data/lib/thrift/transport/server_socket.rb +63 -0
- data/lib/thrift/transport/socket.rb +136 -0
- data/lib/thrift/transport/unix_server_socket.rb +60 -0
- data/lib/thrift/transport/unix_socket.rb +40 -0
- data/lib/thrift/types.rb +101 -0
- data/script/proto_benchmark.rb +121 -0
- data/script/read_struct.rb +43 -0
- data/script/write_struct.rb +30 -0
- data/setup.rb +1585 -0
- data/spec/ThriftSpec.thrift +84 -0
- data/spec/base_protocol_spec.rb +160 -0
- data/spec/base_transport_spec.rb +351 -0
- data/spec/binary_protocol_accelerated_spec.rb +41 -0
- data/spec/binary_protocol_spec.rb +63 -0
- data/spec/binary_protocol_spec_shared.rb +375 -0
- data/spec/client_spec.rb +100 -0
- data/spec/compact_protocol_spec.rb +117 -0
- data/spec/exception_spec.rb +142 -0
- data/spec/http_client_spec.rb +49 -0
- data/spec/mongrel_http_server_spec.rb +117 -0
- data/spec/nonblocking_server_spec.rb +265 -0
- data/spec/processor_spec.rb +83 -0
- data/spec/serializer_spec.rb +69 -0
- data/spec/server_socket_spec.rb +80 -0
- data/spec/server_spec.rb +160 -0
- data/spec/socket_spec.rb +61 -0
- data/spec/socket_spec_shared.rb +104 -0
- data/spec/spec_helper.rb +60 -0
- data/spec/struct_spec.rb +252 -0
- data/spec/types_spec.rb +116 -0
- data/spec/unix_socket_spec.rb +108 -0
- data/thrift.gemspec +32 -0
- metadata +202 -0
data/CHANGELOG
ADDED
data/Manifest
ADDED
@@ -0,0 +1,81 @@
|
|
1
|
+
CHANGELOG
|
2
|
+
Manifest
|
3
|
+
Rakefile
|
4
|
+
README
|
5
|
+
setup.rb
|
6
|
+
benchmark/benchmark.rb
|
7
|
+
benchmark/Benchmark.thrift
|
8
|
+
benchmark/client.rb
|
9
|
+
benchmark/server.rb
|
10
|
+
benchmark/thin_server.rb
|
11
|
+
ext/binary_protocol_accelerated.c
|
12
|
+
ext/binary_protocol_accelerated.h
|
13
|
+
ext/compact_protocol.c
|
14
|
+
ext/compact_protocol.h
|
15
|
+
ext/constants.h
|
16
|
+
ext/extconf.rb
|
17
|
+
ext/macros.h
|
18
|
+
ext/memory_buffer.c
|
19
|
+
ext/memory_buffer.h
|
20
|
+
ext/protocol.c
|
21
|
+
ext/protocol.h
|
22
|
+
ext/struct.c
|
23
|
+
ext/struct.h
|
24
|
+
ext/thrift_native.c
|
25
|
+
lib/thrift.rb
|
26
|
+
lib/thrift/client.rb
|
27
|
+
lib/thrift/core_ext.rb
|
28
|
+
lib/thrift/exceptions.rb
|
29
|
+
lib/thrift/processor.rb
|
30
|
+
lib/thrift/struct.rb
|
31
|
+
lib/thrift/thrift_native.rb
|
32
|
+
lib/thrift/types.rb
|
33
|
+
lib/thrift/core_ext/fixnum.rb
|
34
|
+
lib/thrift/protocol/base_protocol.rb
|
35
|
+
lib/thrift/protocol/binary_protocol.rb
|
36
|
+
lib/thrift/protocol/binary_protocol_accelerated.rb
|
37
|
+
lib/thrift/protocol/compact_protocol.rb
|
38
|
+
lib/thrift/serializer/deserializer.rb
|
39
|
+
lib/thrift/serializer/serializer.rb
|
40
|
+
lib/thrift/server/base_server.rb
|
41
|
+
lib/thrift/server/mongrel_http_server.rb
|
42
|
+
lib/thrift/server/nonblocking_server.rb
|
43
|
+
lib/thrift/server/simple_server.rb
|
44
|
+
lib/thrift/server/thread_pool_server.rb
|
45
|
+
lib/thrift/server/threaded_server.rb
|
46
|
+
lib/thrift/transport/base_server_transport.rb
|
47
|
+
lib/thrift/transport/base_transport.rb
|
48
|
+
lib/thrift/transport/buffered_transport.rb
|
49
|
+
lib/thrift/transport/framed_transport.rb
|
50
|
+
lib/thrift/transport/http_client_transport.rb
|
51
|
+
lib/thrift/transport/io_stream_transport.rb
|
52
|
+
lib/thrift/transport/memory_buffer_transport.rb
|
53
|
+
lib/thrift/transport/server_socket.rb
|
54
|
+
lib/thrift/transport/socket.rb
|
55
|
+
lib/thrift/transport/unix_server_socket.rb
|
56
|
+
lib/thrift/transport/unix_socket.rb
|
57
|
+
script/proto_benchmark.rb
|
58
|
+
script/read_struct.rb
|
59
|
+
script/write_struct.rb
|
60
|
+
spec/base_protocol_spec.rb
|
61
|
+
spec/base_transport_spec.rb
|
62
|
+
spec/binary_protocol_accelerated_spec.rb
|
63
|
+
spec/binary_protocol_spec.rb
|
64
|
+
spec/binary_protocol_spec_shared.rb
|
65
|
+
spec/client_spec.rb
|
66
|
+
spec/compact_protocol_spec.rb
|
67
|
+
spec/exception_spec.rb
|
68
|
+
spec/http_client_spec.rb
|
69
|
+
spec/mongrel_http_server_spec.rb
|
70
|
+
spec/nonblocking_server_spec.rb
|
71
|
+
spec/processor_spec.rb
|
72
|
+
spec/serializer_spec.rb
|
73
|
+
spec/server_socket_spec.rb
|
74
|
+
spec/server_spec.rb
|
75
|
+
spec/socket_spec.rb
|
76
|
+
spec/socket_spec_shared.rb
|
77
|
+
spec/spec_helper.rb
|
78
|
+
spec/struct_spec.rb
|
79
|
+
spec/ThriftSpec.thrift
|
80
|
+
spec/types_spec.rb
|
81
|
+
spec/unix_socket_spec.rb
|
data/README
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
Thrift Ruby Software Library
|
2
|
+
http://incubator.apache.org/thrift/
|
3
|
+
|
4
|
+
== LICENSE:
|
5
|
+
|
6
|
+
Licensed to the Apache Software Foundation (ASF) under one
|
7
|
+
or more contributor license agreements. See the NOTICE file
|
8
|
+
distributed with this work for additional information
|
9
|
+
regarding copyright ownership. The ASF licenses this file
|
10
|
+
to you under the Apache License, Version 2.0 (the
|
11
|
+
"License"); you may not use this file except in compliance
|
12
|
+
with the License. You may obtain a copy of the License at
|
13
|
+
|
14
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
+
|
16
|
+
Unless required by applicable law or agreed to in writing,
|
17
|
+
software distributed under the License is distributed on an
|
18
|
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
19
|
+
KIND, either express or implied. See the License for the
|
20
|
+
specific language governing permissions and limitations
|
21
|
+
under the License.
|
22
|
+
|
23
|
+
== DESCRIPTION:
|
24
|
+
|
25
|
+
Thrift is a strongly-typed language-agnostic RPC system.
|
26
|
+
This library is the ruby implementation for both clients and servers.
|
27
|
+
|
28
|
+
== INSTALL:
|
29
|
+
|
30
|
+
$ gem install thrift
|
31
|
+
|
32
|
+
== CAVEATS:
|
33
|
+
|
34
|
+
This library provides the client and server implementations of thrift.
|
35
|
+
It does <em>not</em> provide the compiler for the .thrift files. To compile
|
36
|
+
.thrift files into language-specific implementations, please download the full
|
37
|
+
thrift software package.
|
38
|
+
|
39
|
+
== USAGE:
|
40
|
+
|
41
|
+
This section should get written by someone with the time and inclination.
|
42
|
+
In the meantime, look at existing code, such as the benchmark or the tutorial
|
43
|
+
in the full thrift distribution.
|
data/Rakefile
ADDED
@@ -0,0 +1,102 @@
|
|
1
|
+
#
|
2
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
3
|
+
# or more contributor license agreements. See the NOTICE file
|
4
|
+
# distributed with this work for additional information
|
5
|
+
# regarding copyright ownership. The ASF licenses this file
|
6
|
+
# to you under the Apache License, Version 2.0 (the
|
7
|
+
# "License"); you may not use this file except in compliance
|
8
|
+
# with the License. You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing,
|
13
|
+
# software distributed under the License is distributed on an
|
14
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
15
|
+
# KIND, either express or implied. See the License for the
|
16
|
+
# specific language governing permissions and limitations
|
17
|
+
# under the License.
|
18
|
+
#
|
19
|
+
|
20
|
+
require 'rubygems'
|
21
|
+
require 'rake'
|
22
|
+
require 'spec/rake/spectask'
|
23
|
+
|
24
|
+
THRIFT = '../../compiler/cpp/thrift'
|
25
|
+
|
26
|
+
task :default => [:spec]
|
27
|
+
|
28
|
+
task :spec => [:'gen-rb', :realspec]
|
29
|
+
|
30
|
+
Spec::Rake::SpecTask.new(:realspec) do |t|
|
31
|
+
t.spec_files = FileList['spec/**/*_spec.rb']
|
32
|
+
t.spec_opts = ['--color']
|
33
|
+
end
|
34
|
+
|
35
|
+
Spec::Rake::SpecTask.new(:'spec:rcov') do |t|
|
36
|
+
t.spec_files = FileList['spec/**/*_spec.rb']
|
37
|
+
t.spec_opts = ['--color']
|
38
|
+
t.rcov = true
|
39
|
+
t.rcov_opts = ['--exclude', '^spec,/gems/']
|
40
|
+
end
|
41
|
+
|
42
|
+
desc 'Run the compiler tests (requires full thrift checkout)'
|
43
|
+
task :test do
|
44
|
+
# ensure this is a full thrift checkout and not a tarball of the ruby libs
|
45
|
+
cmd = 'head -1 ../../README 2>/dev/null | grep Thrift >/dev/null 2>/dev/null'
|
46
|
+
system(cmd) or fail "rake test requires a full thrift checkout"
|
47
|
+
sh 'make', '-C', File.dirname(__FILE__) + "/../../test/rb", "check"
|
48
|
+
end
|
49
|
+
|
50
|
+
desc 'Compile the .thrift files for the specs'
|
51
|
+
task :'gen-rb' => [:'gen-rb:spec', :'gen-rb:benchmark', :'gen-rb:debug_proto']
|
52
|
+
|
53
|
+
namespace :'gen-rb' do
|
54
|
+
task :'spec' do
|
55
|
+
dir = File.dirname(__FILE__) + '/spec'
|
56
|
+
sh THRIFT, '--gen', 'rb', '-o', dir, "#{dir}/ThriftSpec.thrift"
|
57
|
+
end
|
58
|
+
|
59
|
+
task :'benchmark' do
|
60
|
+
dir = File.dirname(__FILE__) + '/benchmark'
|
61
|
+
sh THRIFT, '--gen', 'rb', '-o', dir, "#{dir}/Benchmark.thrift"
|
62
|
+
end
|
63
|
+
|
64
|
+
task :'debug_proto' do
|
65
|
+
sh "mkdir", "-p", "debug_proto_test"
|
66
|
+
sh THRIFT, '--gen', 'rb', "-o", "debug_proto_test", "../../test/DebugProtoTest.thrift"
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
desc 'Run benchmarking of NonblockingServer'
|
71
|
+
task :benchmark do
|
72
|
+
ruby 'benchmark/benchmark.rb'
|
73
|
+
end
|
74
|
+
|
75
|
+
|
76
|
+
begin
|
77
|
+
require 'echoe'
|
78
|
+
|
79
|
+
Echoe.new('thrift') do |p|
|
80
|
+
p.author = ['Kevin Ballard', 'Kevin Clark', 'Mark Slee', 'Evan Weaver']
|
81
|
+
p.project = "fauna"
|
82
|
+
p.summary = "Ruby libraries for Thrift, with fixes."
|
83
|
+
p.include_rakefile = true
|
84
|
+
p.url = "http://blog.evanweaver.com/files/doc/fauna/thrift/"
|
85
|
+
p.docs_host = "blog.evanweaver.com:~/www/bax/public/files/doc/"
|
86
|
+
end
|
87
|
+
|
88
|
+
task :install => [:check_site_lib]
|
89
|
+
|
90
|
+
require 'rbconfig'
|
91
|
+
task :check_site_lib do
|
92
|
+
file = File.join(Config::CONFIG['sitelibdir'], 'thrift')
|
93
|
+
fail "Thrift is already installed in site_ruby: #{file}*\nPlease remove it if you want to continue." if File.exist?(file)
|
94
|
+
end
|
95
|
+
rescue LoadError
|
96
|
+
[:install, :package].each do |t|
|
97
|
+
desc "Stub for #{t}"
|
98
|
+
task t do
|
99
|
+
fail "The Echoe gem is required for this task"
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
#
|
2
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
3
|
+
# or more contributor license agreements. See the NOTICE file
|
4
|
+
# distributed with this work for additional information
|
5
|
+
# regarding copyright ownership. The ASF licenses this file
|
6
|
+
# to you under the Apache License, Version 2.0 (the
|
7
|
+
# "License"); you may not use this file except in compliance
|
8
|
+
# with the License. You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing,
|
13
|
+
# software distributed under the License is distributed on an
|
14
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
15
|
+
# KIND, either express or implied. See the License for the
|
16
|
+
# specific language governing permissions and limitations
|
17
|
+
# under the License.
|
18
|
+
#
|
19
|
+
|
20
|
+
namespace rb ThriftBenchmark
|
21
|
+
|
22
|
+
service BenchmarkService {
|
23
|
+
i32 fibonacci(1:byte n)
|
24
|
+
}
|
@@ -0,0 +1,271 @@
|
|
1
|
+
#
|
2
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
3
|
+
# or more contributor license agreements. See the NOTICE file
|
4
|
+
# distributed with this work for additional information
|
5
|
+
# regarding copyright ownership. The ASF licenses this file
|
6
|
+
# to you under the Apache License, Version 2.0 (the
|
7
|
+
# "License"); you may not use this file except in compliance
|
8
|
+
# with the License. You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing,
|
13
|
+
# software distributed under the License is distributed on an
|
14
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
15
|
+
# KIND, either express or implied. See the License for the
|
16
|
+
# specific language governing permissions and limitations
|
17
|
+
# under the License.
|
18
|
+
#
|
19
|
+
|
20
|
+
require 'rubygems'
|
21
|
+
$:.unshift File.dirname(__FILE__) + '/../lib'
|
22
|
+
require 'thrift'
|
23
|
+
require 'stringio'
|
24
|
+
|
25
|
+
HOST = '127.0.0.1'
|
26
|
+
PORT = 42587
|
27
|
+
|
28
|
+
###############
|
29
|
+
## Server
|
30
|
+
###############
|
31
|
+
|
32
|
+
class Server
|
33
|
+
attr_accessor :serverclass
|
34
|
+
attr_accessor :interpreter
|
35
|
+
attr_accessor :host
|
36
|
+
attr_accessor :port
|
37
|
+
|
38
|
+
def initialize(opts)
|
39
|
+
@serverclass = opts.fetch(:class, Thrift::NonblockingServer)
|
40
|
+
@interpreter = opts.fetch(:interpreter, "ruby")
|
41
|
+
@host = opts.fetch(:host, ::HOST)
|
42
|
+
@port = opts.fetch(:port, ::PORT)
|
43
|
+
end
|
44
|
+
|
45
|
+
def start
|
46
|
+
return if @serverclass == Object
|
47
|
+
args = (File.basename(@interpreter) == "jruby" ? "-J-server" : "")
|
48
|
+
@pipe = IO.popen("#{@interpreter} #{args} #{File.dirname(__FILE__)}/server.rb #{@host} #{@port} #{@serverclass.name}", "r+")
|
49
|
+
Marshal.load(@pipe) # wait until the server has started
|
50
|
+
sleep 0.4 # give the server time to actually start spawning sockets
|
51
|
+
end
|
52
|
+
|
53
|
+
def shutdown
|
54
|
+
return unless @pipe
|
55
|
+
Marshal.dump(:shutdown, @pipe)
|
56
|
+
begin
|
57
|
+
@pipe.read(10) # block until the server shuts down
|
58
|
+
rescue EOFError
|
59
|
+
end
|
60
|
+
@pipe.close
|
61
|
+
@pipe = nil
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
class BenchmarkManager
|
66
|
+
def initialize(opts, server)
|
67
|
+
@socket = opts.fetch(:socket) do
|
68
|
+
@host = opts.fetch(:host, 'localhost')
|
69
|
+
@port = opts.fetch(:port)
|
70
|
+
nil
|
71
|
+
end
|
72
|
+
@num_processes = opts.fetch(:num_processes, 40)
|
73
|
+
@clients_per_process = opts.fetch(:clients_per_process, 10)
|
74
|
+
@calls_per_client = opts.fetch(:calls_per_client, 50)
|
75
|
+
@interpreter = opts.fetch(:interpreter, "ruby")
|
76
|
+
@server = server
|
77
|
+
@log_exceptions = opts.fetch(:log_exceptions, false)
|
78
|
+
end
|
79
|
+
|
80
|
+
def run
|
81
|
+
@pool = []
|
82
|
+
@benchmark_start = Time.now
|
83
|
+
puts "Spawning benchmark processes..."
|
84
|
+
@num_processes.times do
|
85
|
+
spawn
|
86
|
+
sleep 0.02 # space out spawns
|
87
|
+
end
|
88
|
+
collect_output
|
89
|
+
@benchmark_end = Time.now # we know the procs are done here
|
90
|
+
translate_output
|
91
|
+
analyze_output
|
92
|
+
report_output
|
93
|
+
end
|
94
|
+
|
95
|
+
def spawn
|
96
|
+
pipe = IO.popen("#{@interpreter} #{File.dirname(__FILE__)}/client.rb #{"-log-exceptions" if @log_exceptions} #{@host} #{@port} #{@clients_per_process} #{@calls_per_client}")
|
97
|
+
@pool << pipe
|
98
|
+
end
|
99
|
+
|
100
|
+
def socket_class
|
101
|
+
if @socket
|
102
|
+
Thrift::UNIXSocket
|
103
|
+
else
|
104
|
+
Thrift::Socket
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
def collect_output
|
109
|
+
puts "Collecting output..."
|
110
|
+
# read from @pool until all sockets are closed
|
111
|
+
@buffers = Hash.new { |h,k| h[k] = '' }
|
112
|
+
until @pool.empty?
|
113
|
+
rd, = select(@pool)
|
114
|
+
next if rd.nil?
|
115
|
+
rd.each do |fd|
|
116
|
+
begin
|
117
|
+
@buffers[fd] << fd.readpartial(4096)
|
118
|
+
rescue EOFError
|
119
|
+
@pool.delete fd
|
120
|
+
end
|
121
|
+
end
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
def translate_output
|
126
|
+
puts "Translating output..."
|
127
|
+
@output = []
|
128
|
+
@buffers.each do |fd, buffer|
|
129
|
+
strio = StringIO.new(buffer)
|
130
|
+
logs = []
|
131
|
+
begin
|
132
|
+
loop do
|
133
|
+
logs << Marshal.load(strio)
|
134
|
+
end
|
135
|
+
rescue EOFError
|
136
|
+
@output << logs
|
137
|
+
end
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
def analyze_output
|
142
|
+
puts "Analyzing output..."
|
143
|
+
call_times = []
|
144
|
+
client_times = []
|
145
|
+
connection_failures = []
|
146
|
+
connection_errors = []
|
147
|
+
shortest_call = 0
|
148
|
+
shortest_client = 0
|
149
|
+
longest_call = 0
|
150
|
+
longest_client = 0
|
151
|
+
@output.each do |logs|
|
152
|
+
cur_call, cur_client = nil
|
153
|
+
logs.each do |tok, time|
|
154
|
+
case tok
|
155
|
+
when :start
|
156
|
+
cur_client = time
|
157
|
+
when :call_start
|
158
|
+
cur_call = time
|
159
|
+
when :call_end
|
160
|
+
delta = time - cur_call
|
161
|
+
call_times << delta
|
162
|
+
longest_call = delta unless longest_call > delta
|
163
|
+
shortest_call = delta if shortest_call == 0 or delta < shortest_call
|
164
|
+
cur_call = nil
|
165
|
+
when :end
|
166
|
+
delta = time - cur_client
|
167
|
+
client_times << delta
|
168
|
+
longest_client = delta unless longest_client > delta
|
169
|
+
shortest_client = delta if shortest_client == 0 or delta < shortest_client
|
170
|
+
cur_client = nil
|
171
|
+
when :connection_failure
|
172
|
+
connection_failures << time
|
173
|
+
when :connection_error
|
174
|
+
connection_errors << time
|
175
|
+
end
|
176
|
+
end
|
177
|
+
end
|
178
|
+
@report = {}
|
179
|
+
@report[:total_calls] = call_times.inject(0.0) { |a,t| a += t }
|
180
|
+
@report[:avg_calls] = @report[:total_calls] / call_times.size
|
181
|
+
@report[:total_clients] = client_times.inject(0.0) { |a,t| a += t }
|
182
|
+
@report[:avg_clients] = @report[:total_clients] / client_times.size
|
183
|
+
@report[:connection_failures] = connection_failures.size
|
184
|
+
@report[:connection_errors] = connection_errors.size
|
185
|
+
@report[:shortest_call] = shortest_call
|
186
|
+
@report[:shortest_client] = shortest_client
|
187
|
+
@report[:longest_call] = longest_call
|
188
|
+
@report[:longest_client] = longest_client
|
189
|
+
@report[:total_benchmark_time] = @benchmark_end - @benchmark_start
|
190
|
+
@report[:fastthread] = $".include?('fastthread.bundle')
|
191
|
+
end
|
192
|
+
|
193
|
+
def report_output
|
194
|
+
fmt = "%.4f seconds"
|
195
|
+
puts
|
196
|
+
tabulate "%d",
|
197
|
+
[["Server class", "%s"], @server.serverclass == Object ? "" : @server.serverclass],
|
198
|
+
[["Server interpreter", "%s"], @server.interpreter],
|
199
|
+
[["Client interpreter", "%s"], @interpreter],
|
200
|
+
[["Socket class", "%s"], socket_class],
|
201
|
+
["Number of processes", @num_processes],
|
202
|
+
["Clients per process", @clients_per_process],
|
203
|
+
["Calls per client", @calls_per_client],
|
204
|
+
[["Using fastthread", "%s"], @report[:fastthread] ? "yes" : "no"]
|
205
|
+
puts
|
206
|
+
failures = (@report[:connection_failures] > 0)
|
207
|
+
tabulate fmt,
|
208
|
+
[["Connection failures", "%d", [:red, :bold]], @report[:connection_failures]],
|
209
|
+
[["Connection errors", "%d", [:red, :bold]], @report[:connection_errors]],
|
210
|
+
["Average time per call", @report[:avg_calls]],
|
211
|
+
["Average time per client (%d calls)" % @calls_per_client, @report[:avg_clients]],
|
212
|
+
["Total time for all calls", @report[:total_calls]],
|
213
|
+
["Real time for benchmarking", @report[:total_benchmark_time]],
|
214
|
+
["Shortest call time", @report[:shortest_call]],
|
215
|
+
["Longest call time", @report[:longest_call]],
|
216
|
+
["Shortest client time (%d calls)" % @calls_per_client, @report[:shortest_client]],
|
217
|
+
["Longest client time (%d calls)" % @calls_per_client, @report[:longest_client]]
|
218
|
+
end
|
219
|
+
|
220
|
+
ANSI = {
|
221
|
+
:reset => 0,
|
222
|
+
:bold => 1,
|
223
|
+
:black => 30,
|
224
|
+
:red => 31,
|
225
|
+
:green => 32,
|
226
|
+
:yellow => 33,
|
227
|
+
:blue => 34,
|
228
|
+
:magenta => 35,
|
229
|
+
:cyan => 36,
|
230
|
+
:white => 37
|
231
|
+
}
|
232
|
+
|
233
|
+
def tabulate(fmt, *labels_and_values)
|
234
|
+
labels = labels_and_values.map { |l| Array === l ? l.first : l }
|
235
|
+
label_width = labels.inject(0) { |w,l| l.size > w ? l.size : w }
|
236
|
+
labels_and_values.each do |(l,v)|
|
237
|
+
f = fmt
|
238
|
+
l, f, c = l if Array === l
|
239
|
+
fmtstr = "%-#{label_width+1}s #{f}"
|
240
|
+
if STDOUT.tty? and c and v.to_i > 0
|
241
|
+
fmtstr = "\e[#{[*c].map { |x| ANSI[x] } * ";"}m" + fmtstr + "\e[#{ANSI[:reset]}m"
|
242
|
+
end
|
243
|
+
puts fmtstr % [l+":", v]
|
244
|
+
end
|
245
|
+
end
|
246
|
+
end
|
247
|
+
|
248
|
+
def resolve_const(const)
|
249
|
+
const and const.split('::').inject(Object) { |k,c| k.const_get(c) }
|
250
|
+
end
|
251
|
+
|
252
|
+
puts "Starting server..."
|
253
|
+
args = {}
|
254
|
+
args[:interpreter] = ENV['THRIFT_SERVER_INTERPRETER'] || ENV['THRIFT_INTERPRETER'] || "ruby"
|
255
|
+
args[:class] = resolve_const(ENV['THRIFT_SERVER']) || Thrift::NonblockingServer
|
256
|
+
args[:host] = ENV['THRIFT_HOST'] || HOST
|
257
|
+
args[:port] = (ENV['THRIFT_PORT'] || PORT).to_i
|
258
|
+
server = Server.new(args)
|
259
|
+
server.start
|
260
|
+
|
261
|
+
args = {}
|
262
|
+
args[:host] = ENV['THRIFT_HOST'] || HOST
|
263
|
+
args[:port] = (ENV['THRIFT_PORT'] || PORT).to_i
|
264
|
+
args[:num_processes] = (ENV['THRIFT_NUM_PROCESSES'] || 40).to_i
|
265
|
+
args[:clients_per_process] = (ENV['THRIFT_NUM_CLIENTS'] || 5).to_i
|
266
|
+
args[:calls_per_client] = (ENV['THRIFT_NUM_CALLS'] || 50).to_i
|
267
|
+
args[:interpreter] = ENV['THRIFT_CLIENT_INTERPRETER'] || ENV['THRIFT_INTERPRETER'] || "ruby"
|
268
|
+
args[:log_exceptions] = !!ENV['THRIFT_LOG_EXCEPTIONS']
|
269
|
+
BenchmarkManager.new(args, server).run
|
270
|
+
|
271
|
+
server.shutdown
|