-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbulk_test.go
124 lines (113 loc) · 2.58 KB
/
bulk_test.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
//+build histogram
package onering
import (
"fmt"
"github.com/codahale/hdrhistogram"
"runtime"
"sync"
"testing"
"time"
)
// courtesy of Kelly Sommers aka @kellabyte
const (
sampleE = 12
sampleTimes = 1 << sampleE
sampleMask = sampleTimes - 1
)
func BenchmarkResponseTimesRing(b *testing.B) {
var ring = New{Size: 8192, BatchSize: 127}.SPSC()
var wg sync.WaitGroup
wg.Add(2)
var diffs = make([]int64, (b.N/sampleTimes)+1)
var times = make([]int64, (b.N/sampleTimes)+1)
var zero int64 = 0
b.ResetTimer()
go func(n int) {
runtime.LockOSThread()
var t1 = time.Now().UnixNano()
var j = 0
for i := 1; i < n; i++ {
var v = &zero
if i&sampleMask == 0 {
times[j] = t1
v = ×[j]
t1 = time.Now().UnixNano()
j++
} else {
v = &zero
}
ring.Put(v)
}
wg.Done()
}(b.N + 1)
go func(n int) {
runtime.LockOSThread()
var i int = 0
ring.Consume(func(it Iter, v *int64) {
if *v != 0 {
diffs[i] = (time.Now().UnixNano() - *v) / sampleTimes
i++
}
n--
if n <= 0 {
ring.Close()
}
})
wg.Done()
}(b.N)
wg.Wait()
recordLatencyDistribution("BenchmarkResponseTimesRing", diffs)
}
func BenchmarkResponseTimesChannel(b *testing.B) {
var ch = make(chan int64, 8192)
var wg sync.WaitGroup
wg.Add(2)
var diffs = make([]int64, (b.N/sampleTimes)+1)
b.ResetTimer()
go func(n int) {
runtime.LockOSThread()
var t1 = time.Now().UnixNano()
for i := 1; i < n; i++ {
var v int64 = 0
if i&sampleMask == 0 {
v = t1
t1 = time.Now().UnixNano()
}
ch <- v
}
close(ch)
wg.Done()
}(b.N + 1)
go func(n int) {
runtime.LockOSThread()
var i = 0
for v := range ch {
if v != 0 {
diffs[i] = (time.Now().UnixNano() - v) / sampleTimes
i++
}
}
wg.Done()
}(b.N)
wg.Wait()
recordLatencyDistribution("BenchmarkResponseTimesChannel", diffs)
}
func recordLatencyDistribution(name string, diffs []int64) {
fmt.Printf("[Sample size: %v messages] ", sampleTimes)
histogram := hdrhistogram.New(1, 1000000, 5)
for _, d := range diffs {
if d != 0 {
histogram.RecordValue(d)
}
}
fmt.Printf("50: %dns\t75: %dns\t90: %dns\t99: %dns\t99.9: %dns\t99.99: %dns\t99.999: %dns\t99.9999: %dns\n",
histogram.ValueAtQuantile(50),
histogram.ValueAtQuantile(75),
histogram.ValueAtQuantile(90),
histogram.ValueAtQuantile(99),
histogram.ValueAtQuantile(99.9),
histogram.ValueAtQuantile(99.99),
histogram.ValueAtQuantile(99.999),
histogram.ValueAtQuantile(99.9999))
//histwriter.WriteDistributionFile(histogram, histwriter.Percentiles{50, 75, 90, 99, 99.9, 99.99, 99.999, 99.9999}, 1.0, name+".histogram")
}