Skip to content

Commit 133fdf2

Browse files
committed
move to go benchmark
1 parent 05343e9 commit 133fdf2

File tree

3 files changed

+55
-100
lines changed

3 files changed

+55
-100
lines changed

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,4 @@ host-build:
2424

2525
host-test:
2626
godep go test -v ./ ./modeldb
27+
go test -bench=. -run "Benchmark"

client_test.go

+53-99
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func TestSetGet(t *testing.T) {
6060
fmt.Printf("Set/Get/Del test successful\n")
6161
}
6262

63-
func BenchmarkSet(b *testing.B) {
63+
func BenchmarkEtcdSet(b *testing.B) {
6464
setVal := JSONObj{
6565
Value: "test1",
6666
}
@@ -71,18 +71,23 @@ func BenchmarkSet(b *testing.B) {
7171
}
7272
}
7373

74-
func BenchmarkGet(b *testing.B) {
74+
func BenchmarkEtcdGet(b *testing.B) {
7575
var retVal JSONObj
7676
setVal := JSONObj{
7777
Value: "test1",
7878
}
7979

80-
if err := client.SetObj("/contiv.io/test", setVal); err != nil {
81-
b.Fatalf("Fatal setting key. Err: %v", err)
80+
for n := 0; n < b.N; n++ {
81+
if err := client.SetObj("/contiv.io/test"+strconv.Itoa(n), setVal); err != nil {
82+
b.Fatalf("Fatal setting key. Err: %v", err)
83+
}
8284
}
8385

86+
// Reset timer so that only gets are tested
87+
b.ResetTimer()
88+
8489
for n := 0; n < b.N; n++ {
85-
if err := client.GetObj("/contiv.io/test", &retVal); err != nil {
90+
if err := client.GetObj("/contiv.io/test"+strconv.Itoa(n), &retVal); err != nil {
8691
b.Fatalf("Fatal getting key. Err: %v\n", err)
8792
}
8893

@@ -92,77 +97,25 @@ func BenchmarkGet(b *testing.B) {
9297
}
9398
}
9499

95-
func BenchmarkDel(b *testing.B) {
100+
func BenchmarkEtcdDel(b *testing.B) {
96101
setVal := JSONObj{
97102
Value: "test1",
98103
}
99104

100105
for n := 0; n < b.N; n++ {
101-
if err := client.SetObj("/contiv.io/test", setVal); err != nil {
106+
if err := client.SetObj("/contiv.io/test"+strconv.Itoa(n), setVal); err != nil {
102107
b.Fatalf("Fatal setting key. Err: %v", err)
103108
}
104-
105-
if err := client.DelObj("/contiv.io/test"); err != nil {
106-
b.Fatalf("Fatal deleting test object. Err: %v", err)
107-
}
108109
}
109-
}
110-
111-
func TestSetGetPerformance(t *testing.T) {
112-
// Set
113-
setVal := JSONObj{
114-
Value: "test1",
115-
}
116-
var retVal JSONObj
117-
118-
const testCount = 1000
119110

120-
log.Infof("Performing %d write tests", testCount)
111+
// Reset timer so that only gets are tested
112+
b.ResetTimer()
121113

122-
startTime := time.Now()
123-
124-
for i := 0; i < testCount; i++ {
125-
if err := client.SetObj("/contiv.io/test"+strconv.Itoa(i), setVal); err != nil {
126-
fmt.Printf("Fatal setting key. Err: %v\n", err)
127-
t.Fatalf("Fatal setting key")
128-
}
129-
}
130-
131-
timeTook := time.Since(startTime).Nanoseconds() / 1000000
132-
log.Infof("Write Test took %d milli seconds per write. %d ms total", timeTook/testCount, timeTook)
133-
134-
log.Infof("Performing %d read tests", testCount)
135-
136-
// Get test
137-
startTime = time.Now()
138-
139-
for i := 0; i < testCount; i++ {
140-
if err := client.GetObj("/contiv.io/test"+strconv.Itoa(i), &retVal); err != nil {
141-
fmt.Printf("Fatal getting key. Err: %v\n", err)
142-
t.Fatalf("Fatal getting key")
143-
}
144-
145-
if retVal.Value != "test1" {
146-
fmt.Printf("Got invalid response: %+v\n", retVal)
147-
t.Fatalf("Got invalid response")
148-
}
149-
}
150-
151-
timeTook = time.Since(startTime).Nanoseconds() / 1000000
152-
log.Infof("Read Test took %d milli seconds per read. %d ms total", timeTook/testCount, timeTook)
153-
154-
startTime = time.Now()
155-
156-
for i := 0; i < testCount; i++ {
157-
if err := client.DelObj("/contiv.io/test" + strconv.Itoa(i)); err != nil {
158-
t.Fatalf("Fatal deleting test object. Err: %v", err)
114+
for n := 0; n < b.N; n++ {
115+
if err := client.DelObj("/contiv.io/test" + strconv.Itoa(n)); err != nil {
116+
b.Fatalf("Fatal deleting test object. Err: %v", err)
159117
}
160118
}
161-
162-
timeTook = time.Since(startTime).Nanoseconds() / 1000000
163-
log.Infof("Delete Test took %d milli seconds per delete. %d ms total", timeTook/testCount, timeTook)
164-
165-
fmt.Printf("Set/Get/Del test successful\n")
166119
}
167120

168121
func TestConsulClientSetGet(t *testing.T) {
@@ -194,61 +147,62 @@ func TestConsulClientSetGet(t *testing.T) {
194147
fmt.Printf("Consul Set/Get/Del test successful\n")
195148
}
196149

197-
func TestConsulSetGetPerformance(t *testing.T) {
198-
// Set
150+
func BenchmarkConsulSet(b *testing.B) {
199151
setVal := JSONObj{
200152
Value: "test1",
201153
}
202-
var retVal JSONObj
203-
204-
const testCount = 1000
205-
206-
log.Infof("Performing %d write tests", testCount)
207-
208-
startTime := time.Now()
209-
210-
for i := 0; i < testCount; i++ {
211-
if err := consulClient.SetObj("/contiv.io/test"+strconv.Itoa(i), setVal); err != nil {
212-
fmt.Printf("Fatal setting key. Err: %v\n", err)
213-
t.Fatalf("Fatal setting key")
154+
for n := 0; n < b.N; n++ {
155+
if err := consulClient.SetObj("/contiv.io/test"+strconv.Itoa(n), setVal); err != nil {
156+
b.Fatalf("Fatal setting key. Err: %v", err)
214157
}
215158
}
159+
}
216160

217-
timeTook := time.Since(startTime).Nanoseconds() / 1000000
218-
log.Infof("Write Test took %d milli seconds per write. %d ms total", timeTook/testCount, timeTook)
161+
func BenchmarkConsulGet(b *testing.B) {
162+
var retVal JSONObj
163+
setVal := JSONObj{
164+
Value: "test1",
165+
}
219166

220-
log.Infof("Performing %d read tests", testCount)
167+
for n := 0; n < b.N; n++ {
168+
if err := consulClient.SetObj("/contiv.io/test"+strconv.Itoa(n), setVal); err != nil {
169+
b.Fatalf("Fatal setting key. Err: %v", err)
170+
}
171+
}
221172

222-
// Get test
223-
startTime = time.Now()
173+
// Reset timer so that only gets are tested
174+
b.ResetTimer()
224175

225-
for i := 0; i < testCount; i++ {
226-
if err := consulClient.GetObj("/contiv.io/test"+strconv.Itoa(i), &retVal); err != nil {
227-
fmt.Printf("Fatal getting key. Err: %v\n", err)
228-
t.Fatalf("Fatal getting key")
176+
for n := 0; n < b.N; n++ {
177+
if err := consulClient.GetObj("/contiv.io/test"+strconv.Itoa(n), &retVal); err != nil {
178+
b.Fatalf("Fatal getting key. Err: %v\n", err)
229179
}
230180

231181
if retVal.Value != "test1" {
232-
fmt.Printf("Got invalid response: %+v\n", retVal)
233-
t.Fatalf("Got invalid response")
182+
b.Fatalf("Got invalid response: %+v\n", retVal)
234183
}
235184
}
185+
}
236186

237-
timeTook = time.Since(startTime).Nanoseconds() / 1000000
238-
log.Infof("Read Test took %d milli seconds per read. %d ms total", timeTook/testCount, timeTook)
239-
240-
startTime = time.Now()
187+
func BenchmarkConsulDel(b *testing.B) {
188+
setVal := JSONObj{
189+
Value: "test1",
190+
}
241191

242-
for i := 0; i < testCount; i++ {
243-
if err := consulClient.DelObj("/contiv.io/test" + strconv.Itoa(i)); err != nil {
244-
t.Fatalf("Fatal deleting test object. Err: %v", err)
192+
for n := 0; n < b.N; n++ {
193+
if err := consulClient.SetObj("/contiv.io/test"+strconv.Itoa(n), setVal); err != nil {
194+
b.Fatalf("Fatal setting key. Err: %v", err)
245195
}
246196
}
247197

248-
timeTook = time.Since(startTime).Nanoseconds() / 1000000
249-
log.Infof("Delete Test took %d milli seconds per delete. %d ms total", timeTook/testCount, timeTook)
198+
// Reset timer so that only gets are tested
199+
b.ResetTimer()
250200

251-
fmt.Printf("Set/Get/Del test successful\n")
201+
for n := 0; n < b.N; n++ {
202+
if err := consulClient.DelObj("/contiv.io/test" + strconv.Itoa(n)); err != nil {
203+
b.Fatalf("Fatal deleting test object. Err: %v", err)
204+
}
205+
}
252206
}
253207

254208
func TestLockAcquireRelease(t *testing.T) {

consulClient.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func processKey(inKey string) string {
5050
func (cp *consulPlugin) GetObj(key string, retVal interface{}) error {
5151
key = processKey("/contiv.io/obj/" + processKey(key))
5252

53-
resp, _, err := cp.client.KV().Get(key, nil)
53+
resp, _, err := cp.client.KV().Get(key, &api.QueryOptions{RequireConsistent: true})
5454
if err != nil {
5555
return err
5656
}

0 commit comments

Comments
 (0)