-
Notifications
You must be signed in to change notification settings - Fork 26
/
bench.go
295 lines (261 loc) · 8.58 KB
/
bench.go
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
/*
Package bench provides a generic framework for performing latency benchmarks.
*/
package bench
import (
"context"
"math"
"sync"
"time"
"golang.org/x/time/rate"
"github.com/codahale/hdrhistogram"
)
const (
maxRecordableLatencyNS = 300000000000
sigFigs = 5
defaultBurst = 1000
)
// RequesterFactory creates new Requesters.
type RequesterFactory interface {
// GetRequester returns a new Requester, called for each Benchmark
// connection.
GetRequester(number uint64) Requester
}
// Requester synchronously issues requests for a particular system under test.
type Requester interface {
// Setup prepares the Requester for benchmarking.
Setup() error
// Request performs a synchronous request to the system under test.
Request() error
// Teardown is called upon benchmark completion.
Teardown() error
}
// Benchmark performs a system benchmark by attempting to issue requests at a
// specified rate and capturing the latency distribution. The request rate is
// divided across the number of configured connections.
type Benchmark struct {
connections uint64
benchmarks []*connectionBenchmark
}
// NewBenchmark creates a Benchmark which runs a system benchmark using the
// given RequesterFactory. The requestRate argument specifies the number of
// requests per second to issue. This value is divided across the number of
// connections specified, so if requestRate is 50,000 and connections is 10,
// each connection will attempt to issue 5,000 requests per second. A zero
// value disables rate limiting entirely. The duration argument specifies how
// long to run the benchmark. Requests will be issued in bursts with the
// specified burst rate. If burst == 0 then burst will be the lesser of
// (0.1 * requestRate) and 1000 but at least 1.
func NewBenchmark(factory RequesterFactory, requestRate, connections uint64,
duration time.Duration, burst uint64) *Benchmark {
if connections == 0 {
connections = 1
}
benchmarks := make([]*connectionBenchmark, connections)
for i := uint64(0); i < connections; i++ {
benchmarks[i] = newConnectionBenchmark(
factory.GetRequester(i), requestRate/connections, duration, burst)
}
return &Benchmark{connections: connections, benchmarks: benchmarks}
}
// Run the benchmark and return a summary of the results. An error is returned
// if something went wrong along the way.
func (b *Benchmark) Run() (*Summary, error) {
var (
start = make(chan struct{})
results = make(chan *result, b.connections)
wg sync.WaitGroup
)
// Prepare connection benchmarks
for _, benchmark := range b.benchmarks {
if err := benchmark.setup(); err != nil {
return nil, err
}
wg.Add(1)
go func(b *connectionBenchmark) {
<-start
results <- b.run()
wg.Done()
}(benchmark)
}
// Start benchmark
close(start)
// Wait for completion
wg.Wait()
// Teardown
for _, benchmark := range b.benchmarks {
if err := benchmark.teardown(); err != nil {
return nil, err
}
}
// Merge results
result := <-results
if result.err != nil {
return nil, result.err
}
summary := result.summary
for i := uint64(1); i < b.connections; i++ {
result = <-results
if result.err != nil {
return nil, result.err
}
summary.merge(result.summary)
}
summary.Connections = b.connections
return summary, nil
}
// result of a single connectionBenchmark run.
type result struct {
err error
summary *Summary
}
// connectionBenchmark performs a system benchmark by issuing requests at a
// specified rate and capturing the latency distribution.
type connectionBenchmark struct {
requester Requester
requestRate uint64
duration time.Duration
expectedInterval time.Duration
successHistogram *hdrhistogram.Histogram
uncorrectedSuccessHistogram *hdrhistogram.Histogram
errorHistogram *hdrhistogram.Histogram
uncorrectedErrorHistogram *hdrhistogram.Histogram
successTotal uint64
errorTotal uint64
elapsed time.Duration
burst int
}
// newConnectionBenchmark creates a connectionBenchmark which runs a system
// benchmark using the given Requester. The requestRate argument specifies the
// number of requests per second to issue. A zero value disables rate limiting
// entirely. The duration argument specifies how long to run the benchmark.
func newConnectionBenchmark(requester Requester, requestRate uint64, duration time.Duration, burst uint64) *connectionBenchmark {
var interval time.Duration
if requestRate > 0 {
interval = time.Duration(1000000000 / requestRate)
}
if burst == 0 {
// burst is at least 1 - otherwise it's the smaller of DefaultBurst and 10% of requestRate
burst = uint64(math.Max(1, math.Min(float64(requestRate)*0.1, float64(defaultBurst))))
}
return &connectionBenchmark{
requester: requester,
requestRate: requestRate,
duration: duration,
expectedInterval: interval,
successHistogram: hdrhistogram.New(1, maxRecordableLatencyNS, sigFigs),
uncorrectedSuccessHistogram: hdrhistogram.New(1, maxRecordableLatencyNS, sigFigs),
errorHistogram: hdrhistogram.New(1, maxRecordableLatencyNS, sigFigs),
uncorrectedErrorHistogram: hdrhistogram.New(1, maxRecordableLatencyNS, sigFigs),
burst: int(burst),
}
}
// setup prepares the benchmark for running.
func (c *connectionBenchmark) setup() error {
c.successHistogram.Reset()
c.uncorrectedSuccessHistogram.Reset()
c.errorHistogram.Reset()
c.uncorrectedErrorHistogram.Reset()
c.successTotal = 0
c.errorTotal = 0
return c.requester.Setup()
}
// teardown cleans up any benchmark resources.
func (c *connectionBenchmark) teardown() error {
return c.requester.Teardown()
}
// run the benchmark and return the result. Result contains an error if
// something went wrong along the way.
func (c *connectionBenchmark) run() *result {
var err error
if c.requestRate == 0 {
c.elapsed, err = c.runFullThrottle()
} else {
c.elapsed, err = c.runRateLimited()
}
return &result{summary: c.summarize(), err: err}
}
// runRateLimited runs the benchmark by attempting to issue the configured
// number of requests per second.
func (c *connectionBenchmark) runRateLimited() (time.Duration, error) {
var (
interval = c.expectedInterval.Nanoseconds()
stop = time.After(c.duration)
start = time.Now()
limit = rate.Every(c.expectedInterval)
limiter = rate.NewLimiter(limit, c.burst)
ctx = context.Background()
)
for {
select {
case <-stop:
return time.Since(start), nil
default:
}
limiter.WaitN(ctx, c.burst)
for i := 0; i < c.burst; i++ {
before := time.Now()
err := c.requester.Request()
latency := time.Since(before).Nanoseconds()
if err != nil {
if err := c.errorHistogram.RecordCorrectedValue(latency, interval); err != nil {
return 0, err
}
if err := c.uncorrectedErrorHistogram.RecordValue(latency); err != nil {
return 0, err
}
c.errorTotal++
} else {
if err := c.successHistogram.RecordCorrectedValue(latency, interval); err != nil {
return 0, err
}
if err := c.uncorrectedSuccessHistogram.RecordValue(latency); err != nil {
return 0, err
}
c.successTotal++
}
}
}
}
// runFullThrottle runs the benchmark without a limit on requests per second.
func (c *connectionBenchmark) runFullThrottle() (time.Duration, error) {
var (
stop = time.After(c.duration)
start = time.Now()
)
for {
select {
case <-stop:
return time.Since(start), nil
default:
}
before := time.Now()
err := c.requester.Request()
latency := time.Since(before).Nanoseconds()
if err != nil {
if err := c.errorHistogram.RecordValue(latency); err != nil {
return 0, err
}
c.errorTotal++
} else {
if err := c.successHistogram.RecordValue(latency); err != nil {
return 0, err
}
c.successTotal++
}
}
}
// summarize returns a Summary of the last benchmark run.
func (c *connectionBenchmark) summarize() *Summary {
return &Summary{
SuccessTotal: c.successTotal,
ErrorTotal: c.errorTotal,
TimeElapsed: c.elapsed,
SuccessHistogram: hdrhistogram.Import(c.successHistogram.Export()),
UncorrectedSuccessHistogram: hdrhistogram.Import(c.uncorrectedSuccessHistogram.Export()),
ErrorHistogram: hdrhistogram.Import(c.errorHistogram.Export()),
UncorrectedErrorHistogram: hdrhistogram.Import(c.uncorrectedErrorHistogram.Export()),
Throughput: float64(c.successTotal+c.errorTotal) / c.elapsed.Seconds(),
RequestRate: c.requestRate,
}
}