-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathbenchmark.rb
138 lines (116 loc) · 3.09 KB
/
benchmark.rb
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
require 'json'
require 'lightstep'
require 'opentracing'
require 'net/http'
require 'pp'
require 'uri'
$base_url = "http://localhost:8000"
$test_tracer = LightStep::Tracer.new(
component_name: 'lightstep/ruby/example',
transport: LightStep::Transport::HTTPJSON.new(
host: 'localhost',
port: 8000,
encryption: LightStep::Transport::HTTPJSON::ENCRYPTION_NONE,
access_token: 'none'
)
)
$noop_tracer = OpenTracing::Tracer.new
$prime_work = 982451653
$logs_memory = ""
$logs_size_max = (1 << 20)
$nanos_per_second = 1e9
def prepare_logs()
(0..$logs_size_max-1).each do |x|
$logs_memory << ("A".ord + x%26).chr
end
end
prepare_logs()
def do_work(n)
x = $prime_work
while n != 0 do
x *= $prime_work
x %= 4294967296
n -= 1
end
return x
end
def test_body(tracer, control)
repeat = control['Repeat']
sleepnano = control['Sleep']
sleepival = control['SleepInterval']
work = control['Work']
logn = control['NumLogs']
logsz = control['BytesPerLog']
sleep_debt = 0 # Accumulated nanoseconds
sleeps = 0
answer = 0
(1..repeat).each do
span = tracer.start_span('span/test')
(1..logn).each do
span.log_event("testlog", $logs_memory[0..logsz])
end
answer += do_work(work)
span.finish()
sleep_debt += sleepnano
if sleep_debt <= sleepival
next
end
before = Time.now.to_f
sleep(sleep_debt / $nanos_per_second)
elapsed_secs = Time.now.to_f - before
elapsed = (elapsed_secs * $nanos_per_second).round
sleeps += elapsed_secs
sleep_debt -= elapsed
end
return sleeps, answer
end
def loop()
while true do
uri = URI.parse($base_url + '/control')
resp = Net::HTTP.get(uri)
control = JSON.parse(resp)
concurrent = control['Concurrent']
trace = control['Trace']
if control['Exit']
exit(0)
end
tracer = nil
if trace
tracer = $test_tracer
else
tracer = $noop_tracer
end
before = Time.now.to_f
# Note: Concurrency test not implemented
sleeps, answer = test_body(tracer, control)
after = Time.now.to_f
flush_dur = 0.0
if trace
tracer.flush()
flush_dur = Time.now.to_f - after
end
elapsed = after - before
path = sprintf('/result?timing=%f&flush=%f&s=%f&a=%s', elapsed, flush_dur, sleeps, answer)
uri = URI.parse($base_url + path)
resp = Net::HTTP.get(uri)
end
end
def backtrace_for_all_threads(signame)
File.open("/tmp/ruby_backtrace_#{Process.pid}.txt","a") do |f|
f.puts "--- got signal #{signame}, dump backtrace for all threads at #{Time.now}"
if Thread.current.respond_to?(:backtrace)
Thread.list.each do |t|
f.puts t.inspect
PP.pp(t.backtrace.delete_if {|frame| frame =~ /^#{File.expand_path(__FILE__)}/},
f) # remove frames resulting from calling this method
end
else
PP.pp(caller.delete_if {|frame| frame =~ /^#{File.expand_path(__FILE__)}/},
f) # remove frames resulting from calling this method
end
end
end
Signal.trap(29) do
backtrace_for_all_threads("INFO")
end
loop()