-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpb_bench_test.go
126 lines (110 loc) · 2.55 KB
/
pb_bench_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
125
126
package message
import (
"log"
"reflect"
"testing"
"github.com/go-epaxos/message/example"
)
var (
// To control the server from starting multiple times
pbNoSerializationServerStarted = false
pbWithSerializationServerStarted = false
)
// Benchmark the Sender / Receiver without serialization (to be compared)
func BenchmarkPbNoSerializetion(b *testing.B) {
initTest()
done := make(chan bool, 10)
if !pbNoSerializationServerStarted {
startPbServerNoSerialization()
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
for i := 0; i < 10; i++ {
go startPbClientNoSerialization(done)
}
for i := 0; i < 10; i++ {
<-done
}
}
}
// Benchmark the PbSender / Receiver with serialization
func BenchmarkPbWithSerializetion(b *testing.B) {
initTest()
done := make(chan bool, 10)
if !pbWithSerializationServerStarted {
startPbServerWithSerialization()
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
for i := 0; i < 10; i++ {
go startPbClientWithSerialization(done)
}
for i := 0; i < 10; i++ {
<-done
}
}
}
func initTest() {
register(MsgRequireReply+1, reflect.TypeOf(example.PreAccept{}))
register(MsgRequireReply+2, reflect.TypeOf(example.PreAcceptReply{}))
}
func startPbServerNoSerialization() {
pbNoSerializationServerStarted = true
r := NewPbReceiver("localhost:8002")
r.GoStart()
// no serialization, just echo
go func() {
for {
msg := r.Recv()
msg.reply <- NewPbMessage(msg.Type()+1, msg.Proto())
}
}()
}
func startPbServerWithSerialization() {
pbWithSerializationServerStarted = true
r := NewPbReceiver("localhost:8003")
r.GoStart()
// with serialization
go func() {
for {
msg := r.Recv()
rmsg := NewPbMessage(msg.Type()+1, NewPreAcceptReplySample()) // the reply PbMessage
msg.reply <- rmsg
}
}()
}
func startPbClientNoSerialization(done chan bool) {
s, err := NewPbSender("localhost:8002")
if err != nil {
log.Fatal(err)
}
for i := 0; i < 1000; i++ {
msg := NewPbMessage(MsgRequireReply+1, nil)
reply, err := s.Send(msg)
if err != nil {
log.Fatal(err)
}
if reply.Type() != (msg.Type() + 1) {
log.Fatal("Unexpected reply msgType:", reply.Type())
}
}
done <- true
}
func startPbClientWithSerialization(done chan bool) {
// with serialization
s, err := NewPbSender("localhost:8003")
if err != nil {
log.Fatal(err)
}
for i := 0; i < 1000; i++ {
msg := NewPbMessage(MsgRequireReply+1, NewPreAcceptSample())
reply, err := s.Send(msg)
if err != nil {
log.Fatal(err)
}
if reply.Type() != (msg.Type() + 1) {
log.Fatal("Unexpected reply msgType:", reply.Type())
}
}
done <- true
}