-
Notifications
You must be signed in to change notification settings - Fork 104
/
collection_crud_bench_test.go
196 lines (173 loc) · 4.49 KB
/
collection_crud_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
185
186
187
188
189
190
191
192
193
194
195
196
package gocb
import (
"fmt"
"sync/atomic"
"testing"
"time"
)
type benchDoc struct {
Data []byte `json:"data"`
}
func BenchmarkUpsert(b *testing.B) {
b.ReportAllocs()
// Generate 256 bytes of random data for the document
randomBytes := make([]byte, 256)
for i := 0; i < len(randomBytes); i++ {
randomBytes[i] = byte(i)
}
doc := benchDoc{Data: randomBytes}
// We need to ensure that connections are up and ready before starting the benchmark
err := globalBucket.WaitUntilReady(5*time.Second, &WaitUntilReadyOptions{
ServiceTypes: []ServiceType{ServiceTypeKeyValue},
})
if err != nil {
b.Fatalf("Wait until ready failed: %v", err)
}
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
var i uint32
for pb.Next() {
keyNum := atomic.AddUint32(&i, 1)
_, err := globalCollection.Upsert(fmt.Sprintf("upsert-%d", keyNum), doc, nil)
if err != nil {
b.Fatalf("failed to upsert %d: %v", keyNum, err)
}
atomic.AddUint32(&i, 1)
}
})
}
func BenchmarkReplace(b *testing.B) {
b.ReportAllocs()
// Generate 256 bytes of random data for the document
randomBytes := make([]byte, 256)
for i := 0; i < len(randomBytes); i++ {
randomBytes[i] = byte(i)
}
doc := benchDoc{Data: randomBytes}
_, err := globalCollection.Upsert("upsert-replace-1", doc, nil)
if err != nil {
b.Fatalf("failed to upsert %v", err)
}
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_, err := globalCollection.Replace("upsert-replace-1", doc, nil)
if err != nil {
b.Fatalf("failed to replace %v", err)
}
}
})
}
func BenchmarkGet(b *testing.B) {
b.ReportAllocs()
// Generate 256 bytes of random data for the document
randomBytes := make([]byte, 256)
for i := 0; i < len(randomBytes); i++ {
randomBytes[i] = byte(i)
}
doc := benchDoc{Data: randomBytes}
_, err := globalCollection.Upsert("upsert-get-1", doc, nil)
if err != nil {
b.Fatalf("failed to upsert %v", err)
}
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_, err := globalCollection.Get("upsert-get-1", nil)
if err != nil {
b.Fatalf("failed to get %v", err)
}
}
})
}
func BenchmarkExists(b *testing.B) {
if !globalCluster.SupportsFeature(XattrFeature) {
b.Skip()
}
b.ReportAllocs()
// Generate 256 bytes of random data for the document
randomBytes := make([]byte, 256)
for i := 0; i < len(randomBytes); i++ {
randomBytes[i] = byte(i)
}
doc := benchDoc{Data: randomBytes}
_, err := globalCollection.Upsert("upsert-exists-1", doc, nil)
if err != nil {
b.Fatalf("failed to upsert %v", err)
}
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_, err := globalCollection.Exists("upsert-exists-1", nil)
if err != nil {
b.Fatalf("failed to exists %v", err)
}
}
})
}
func BenchmarkGetFromReplica(b *testing.B) {
b.ReportAllocs()
// Generate 256 bytes of random data for the document
randomBytes := make([]byte, 256)
for i := 0; i < len(randomBytes); i++ {
randomBytes[i] = byte(i)
}
doc := benchDoc{Data: randomBytes}
_, err := globalCollection.Upsert("upsert-replica-1", doc, nil)
if err != nil {
b.Fatalf("failed to upsert %v", err)
}
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_, err := globalCollection.GetAnyReplica("upsert-replica-1", nil)
if err != nil {
b.Fatalf("failed to get replica %v", err)
}
}
})
}
func BenchmarkGetAndTouch(b *testing.B) {
b.ReportAllocs()
// Generate 256 bytes of random data for the document
randomBytes := make([]byte, 256)
for i := 0; i < len(randomBytes); i++ {
randomBytes[i] = byte(i)
}
doc := benchDoc{Data: randomBytes}
_, err := globalCollection.Upsert("upsert-get-and-touch-1", doc, nil)
if err != nil {
b.Fatalf("failed to upsert %v", err)
}
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_, err := globalCollection.GetAndTouch("upsert-get-and-touch-1", 10, nil)
if err != nil {
b.Fatalf("failed to get and touch %v", err)
}
}
})
}
func BenchmarkTouch(b *testing.B) {
b.ReportAllocs()
// Generate 256 bytes of random data for the document
randomBytes := make([]byte, 256)
for i := 0; i < len(randomBytes); i++ {
randomBytes[i] = byte(i)
}
doc := benchDoc{Data: randomBytes}
_, err := globalCollection.Upsert("upsert-touch-1", doc, nil)
if err != nil {
b.Fatalf("failed to upsert %v", err)
}
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_, err := globalCollection.Touch("upsert-touch-1", 10, nil)
if err != nil {
b.Fatalf("failed to touch %v", err)
}
}
})
}