-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbench_test.go
184 lines (166 loc) · 3.88 KB
/
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
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
package message
import (
"log"
"math/rand"
"testing"
"code.google.com/p/gogoprotobuf/proto"
"github.com/go-epaxos/message/example"
)
var (
// To control the server from starting multiple times
noSerializationServerStarted = false
withSerializationServerStarted = false
)
// Benchmark the Sender / Receiver without serialization (to be compared)
func BenchmarkNoSerializetion(b *testing.B) {
done := make(chan bool, 10)
if !noSerializationServerStarted {
startServerNoSerialization()
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
for i := 0; i < 10; i++ {
go startClientNoSerialization(done)
}
for i := 0; i < 10; i++ {
<-done
}
}
}
// Benchmark the Sender / Receiver with serialization
func BenchmarkWithSerializetion(b *testing.B) {
done := make(chan bool, 10)
if !withSerializationServerStarted {
startServerWithSerialization()
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
for i := 0; i < 10; i++ {
go startClientWithSerialization(done)
}
for i := 0; i < 10; i++ {
<-done
}
}
}
// These two functions are modified from example.pb.go
// with a change to the size of Deps[] and CommittedDeps[]
func NewPreAcceptSample() *example.PreAccept {
this := &example.PreAccept{}
this.LeaderId = rand.Int31()
this.Replica = rand.Int31()
this.Instance = rand.Int31()
this.Ballot = rand.Int31()
v5 := rand.Intn(100)
this.Command = make([]byte, v5)
for i := 0; i < v5; i++ {
this.Command[i] = byte(rand.Intn(256))
}
this.Seq = rand.Int31()
v6 := 5
this.Deps = make([]int32, v6)
for i := 0; i < v6; i++ {
this.Deps[i] = rand.Int31()
}
return this
}
func NewPreAcceptReplySample() *example.PreAcceptReply {
this := &example.PreAcceptReply{}
this.Replica = rand.Int31()
this.Instance = rand.Int31()
this.OK = rand.Uint32()
this.Ballot = rand.Int31()
this.Seq = rand.Int31()
v7 := 5
this.Deps = make([]int32, v7)
for i := 0; i < v7; i++ {
this.Deps[i] = rand.Int31()
}
v8 := 5
this.CommittedDeps = make([]int32, v8)
for i := 0; i < v8; i++ {
this.CommittedDeps[i] = rand.Int31()
}
return this
}
func startServerNoSerialization() {
noSerializationServerStarted = true
r := NewReceiver("localhost:8000")
r.GoStart()
// no serialization, just echo
go func() {
for {
msg := r.Recv()
msg.reply <- NewMessage(0, msg.Bytes())
}
}()
}
func startServerWithSerialization() {
withSerializationServerStarted = true
r := NewReceiver("localhost:8001")
r.GoStart()
// with serialization
go func() {
for {
reply := NewPreAcceptReplySample() // create a reply protobuf
rmsg := NewEmptyMessage() // create a reply message
pa := new(example.PreAccept)
msg := r.Recv()
rmsg.msgType = msg.msgType
// Unmarshal the message bytes
if err := proto.Unmarshal(msg.Bytes(), pa); err != nil {
log.Fatal(err)
}
// Marshal the reply message bytes
var err error
rmsg.bytes, err = proto.Marshal(reply)
if err != nil {
log.Fatal(err)
}
msg.reply <- rmsg
}
}()
}
func startClientNoSerialization(done chan bool) {
s, err := NewSender("localhost:8000")
if err != nil {
log.Fatal(err)
}
for i := 0; i < 1000; i++ {
msg := NewMessage(MsgRequireReply+1, []byte("hello"))
reply, err := s.Send(msg)
if err != nil {
log.Fatal(err)
}
if string(reply.Bytes()) != "hello" {
log.Fatal(err)
}
}
done <- true
}
func startClientWithSerialization(done chan bool) {
// with serialization
s, err := NewSender("localhost:8001")
if err != nil {
log.Fatal(err)
}
for i := 0; i < 1000; i++ {
msg := NewMessage(MsgRequireReply+1, nil)
pa := NewPreAcceptSample() // create a protobuf struct
pr := new(example.PreAcceptReply)
// Marshal to bytes
msg.bytes, err = proto.Marshal(pa)
if err != nil {
log.Fatal(err)
}
reply, err := s.Send(msg)
if err != nil {
log.Fatal(err)
}
//Unmarshl the reply bytes
if err := proto.Unmarshal(reply.Bytes(), pr); err != nil {
log.Fatal(err)
}
}
done <- true
}