-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbatcher_comprehensive_benchmark_test.go
More file actions
330 lines (269 loc) · 7.61 KB
/
batcher_comprehensive_benchmark_test.go
File metadata and controls
330 lines (269 loc) · 7.61 KB
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
//nolint:wsl // Benchmark files have different formatting standards
package batcher
import (
"sync"
"testing"
"time"
)
// BenchmarkBatcherPut measures the performance of Put operation for basic Batcher.
func BenchmarkBatcherPut(b *testing.B) {
processedBatches := 0
batchFn := func(_ []*batchStoreItem) {
processedBatches++
}
batcher := New[batchStoreItem](100, 10*time.Second, batchFn, false)
b.ResetTimer()
for i := 0; i < b.N; i++ {
batcher.Put(&batchStoreItem{})
}
// Trigger to process any remaining items
batcher.Trigger()
}
// BenchmarkBatcherPutParallel measures the performance of Put operation under a concurrent load.
func BenchmarkBatcherPutParallel(b *testing.B) {
processedBatches := 0
var mu sync.Mutex
batchFn := func(_ []*batchStoreItem) {
mu.Lock()
processedBatches++
mu.Unlock()
}
batcher := New[batchStoreItem](100, 10*time.Second, batchFn, true)
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
batcher.Put(&batchStoreItem{})
}
})
// Trigger to process any remaining items
batcher.Trigger()
}
// BenchmarkBatcherTrigger measures the performance of manual Trigger operation.
func BenchmarkBatcherTrigger(b *testing.B) {
processedBatches := 0
batchFn := func(_ []*batchStoreItem) {
processedBatches++
}
batcher := New[batchStoreItem](1000, 10*time.Second, batchFn, false)
// Pre-fill with some items
for i := 0; i < 50; i++ {
batcher.Put(&batchStoreItem{})
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
batcher.Trigger()
}
}
// BenchmarkBatcherWithBackground compares foreground vs. background processing.
func BenchmarkBatcherWithBackground(b *testing.B) {
b.Run("Foreground", func(b *testing.B) {
processedItems := 0
batchFn := func(batch []*batchStoreItem) {
processedItems += len(batch)
}
batcher := New[batchStoreItem](100, time.Second, batchFn, false)
b.ResetTimer()
for i := 0; i < b.N; i++ {
batcher.Put(&batchStoreItem{})
}
batcher.Trigger()
})
b.Run("Background", func(b *testing.B) {
processedItems := 0
var mu sync.Mutex
batchFn := func(batch []*batchStoreItem) {
mu.Lock()
processedItems += len(batch)
mu.Unlock()
}
batcher := New[batchStoreItem](100, time.Second, batchFn, true)
b.ResetTimer()
for i := 0; i < b.N; i++ {
batcher.Put(&batchStoreItem{})
}
batcher.Trigger()
time.Sleep(10 * time.Millisecond) // Allow background processing
})
}
// BenchmarkTimePartitionedMapSet measures Set operation performance.
func BenchmarkTimePartitionedMapSet(b *testing.B) {
m := NewTimePartitionedMap[int, struct{}](time.Second, 60)
b.ResetTimer()
for i := 0; i < b.N; i++ {
m.Set(i, struct{}{})
}
}
// BenchmarkTimePartitionedMapGet measures Get operation performance.
func BenchmarkTimePartitionedMapGet(b *testing.B) {
m := NewTimePartitionedMap[int, struct{}](time.Second, 60)
// Pre-populate the map
for i := 0; i < 10000; i++ {
m.Set(i, struct{}{})
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
_, _ = m.Get(i % 10000)
}
}
// BenchmarkTimePartitionedMapDelete measures Delete operation performance.
func BenchmarkTimePartitionedMapDelete(b *testing.B) {
m := NewTimePartitionedMap[int, struct{}](time.Second, 60)
b.ResetTimer()
for i := 0; i < b.N; i++ {
b.StopTimer()
m.Set(i, struct{}{})
b.StartTimer()
m.Delete(i)
}
}
// BenchmarkTimePartitionedMapCount measures Count operation performance.
func BenchmarkTimePartitionedMapCount(b *testing.B) {
m := NewTimePartitionedMap[int, struct{}](time.Second, 60)
// Pre-populate with varying amounts
for i := 0; i < 5000; i++ {
m.Set(i, struct{}{})
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = m.Count()
}
}
// BenchmarkTimePartitionedMapConcurrent measures concurrent access performance.
func BenchmarkTimePartitionedMapConcurrent(b *testing.B) {
m := NewTimePartitionedMap[int, struct{}](time.Second, 60)
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
i := 0
for pb.Next() {
switch i % 4 {
case 0:
m.Set(i, struct{}{})
case 1:
_, _ = m.Get(i)
case 2:
m.Delete(i)
case 3:
_ = m.Count()
}
i++
}
})
}
// BenchmarkBatcherWithDedupPut measures Put operation with deduplication.
func BenchmarkBatcherWithDedupPut(b *testing.B) {
processedBatches := 0
batchFn := func(_ []*testItem) {
processedBatches++
}
batcher := NewWithDeduplication[testItem](100, time.Second, batchFn, false)
b.ResetTimer()
for i := 0; i < b.N; i++ {
batcher.Put(&testItem{ID: i})
}
// Trigger to process any remaining items
batcher.Trigger()
}
// BenchmarkBatcherWithDedupDuplicates measures deduplication overhead with duplicates.
func BenchmarkBatcherWithDedupDuplicates(b *testing.B) {
processedItems := 0
batchFn := func(batch []*testItem) {
processedItems += len(batch)
}
batcher := NewWithDeduplication[testItem](100, time.Second, batchFn, false)
b.ResetTimer()
for i := 0; i < b.N; i++ {
// Create duplicates by using modulo - 90% duplicates
divisor := b.N / 10
if divisor == 0 {
divisor = 1
}
batcher.Put(&testItem{ID: i % divisor})
}
batcher.Trigger()
}
// BenchmarkSmallBatches measures performance with small batch sizes.
func BenchmarkSmallBatches(b *testing.B) {
processedBatches := 0
batchFn := func(_ []*batchStoreItem) {
processedBatches++
}
// Small batch size of 10
batcher := New[batchStoreItem](10, time.Second, batchFn, false)
b.ResetTimer()
for i := 0; i < b.N; i++ {
batcher.Put(&batchStoreItem{})
}
batcher.Trigger()
}
// BenchmarkLargeBatches measures performance with large batch sizes.
func BenchmarkLargeBatches(b *testing.B) {
processedBatches := 0
batchFn := func(_ []*batchStoreItem) {
processedBatches++
}
// Large batch size of 10,000
batcher := New[batchStoreItem](10000, time.Second, batchFn, false)
b.ResetTimer()
for i := 0; i < b.N; i++ {
batcher.Put(&batchStoreItem{})
}
batcher.Trigger()
}
// BenchmarkTimeoutVsSize compares timeout-triggered vs size-triggered batches.
func BenchmarkTimeoutVsSize(b *testing.B) {
b.Run("SizeTriggered", func(b *testing.B) {
processedBatches := 0
batchFn := func(_ []*batchStoreItem) {
processedBatches++
}
// Small batch size to trigger size-based batching
batcher := New[batchStoreItem](10, 10*time.Second, batchFn, false)
b.ResetTimer()
for i := 0; i < b.N; i++ {
batcher.Put(&batchStoreItem{})
}
})
b.Run("TimeoutTriggered", func(b *testing.B) {
processedBatches := 0
batchFn := func(_ []*batchStoreItem) {
processedBatches++
}
// Large batch size with short timeout
batcher := New[batchStoreItem](100000, 10*time.Millisecond, batchFn, true)
b.ResetTimer()
start := time.Now()
for i := 0; i < 100; i++ {
batcher.Put(&batchStoreItem{})
}
// Wait for timeout to trigger
time.Sleep(20 * time.Millisecond)
b.StopTimer()
elapsed := time.Since(start)
b.ReportMetric(float64(elapsed.Nanoseconds())/float64(100), "ns/item")
})
}
// BenchmarkMemoryUsage measures memory allocation patterns.
func BenchmarkMemoryUsage(b *testing.B) {
b.Run("BasicBatcher", func(b *testing.B) {
// Empty batch function - we're only measuring batcher overhead, not processing
batchFn := func(_ []*batchStoreItem) {}
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
batcher := New[batchStoreItem](100, time.Second, batchFn, false)
batcher.Put(&batchStoreItem{})
batcher.Trigger()
}
})
b.Run("BatcherWithDedup", func(b *testing.B) {
// Empty batch function - we're only measuring batcher overhead, not processing
batchFn := func(_ []*testItem) {}
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
batcher := NewWithDeduplication[testItem](100, time.Second, batchFn, false)
batcher.Put(&testItem{ID: i})
batcher.Trigger()
}
})
}