-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbenchmark_test.go
More file actions
340 lines (294 loc) · 8.48 KB
/
benchmark_test.go
File metadata and controls
340 lines (294 loc) · 8.48 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
331
332
333
334
335
336
337
338
339
340
package gospice
import (
"context"
"os"
"testing"
"github.com/apache/arrow-go/v18/arrow/array"
)
// BenchmarkCloudQuery benchmarks basic query performance against Spice Cloud
func BenchmarkCloudQuery(b *testing.B) {
spice := NewSpiceClient()
defer func() {
if err := spice.Close(); err != nil {
b.Logf("warning: failed to close SpiceClient: %v", err)
}
}()
ApiKey, exists := os.LookupEnv("SPICE_API_KEY")
if !exists || ApiKey == "" {
b.Skip("SPICE_API_KEY not set, skipping cloud authentication test")
}
if err := spice.Init(WithApiKey(ApiKey), WithSpiceCloudAddress()); err != nil {
b.Fatalf("error initializing SpiceClient: %v", err)
}
ctx := context.Background()
if !spice.IsSpiceHealthy(ctx) {
b.Skip("Skipping - Spice Cloud is not healthy")
}
if !spice.IsSpiceReady(ctx) {
b.Skip("Skipping - Spice Cloud is not ready")
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
reader, err := spice.Sql(ctx, "SELECT c_custkey, c_name FROM tpch.customer ORDER BY c_custkey LIMIT 100")
if err != nil {
b.Fatalf("error querying: %v", err)
}
for reader.Next() {
record := reader.RecordBatch()
record.Release()
}
reader.Release()
}
}
// BenchmarkCloudSqlWithParams benchmarks parameterized query performance
func BenchmarkCloudSqlWithParams(b *testing.B) {
spice := NewSpiceClient()
defer func() {
if err := spice.Close(); err != nil {
b.Logf("warning: failed to close SpiceClient: %v", err)
}
}()
ApiKey, exists := os.LookupEnv("SPICE_API_KEY")
if !exists || ApiKey == "" {
b.Skip("SPICE_API_KEY not set, skipping cloud authentication test")
}
if err := spice.Init(WithApiKey(ApiKey), WithSpiceCloudAddress()); err != nil {
b.Fatalf("error initializing SpiceClient: %v", err)
}
ctx := context.Background()
if !spice.IsSpiceHealthy(ctx) {
b.Skip("Skipping - Spice Cloud is not healthy")
}
if !spice.IsSpiceReady(ctx) {
b.Skip("Skipping - Spice Cloud is not ready")
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
reader, err := spice.SqlWithParams(ctx,
"SELECT c_custkey, c_name FROM tpch.customer WHERE c_custkey > $1 ORDER BY c_custkey LIMIT 100",
100)
if err != nil {
b.Fatalf("error querying: %v", err)
}
for reader.Next() {
record := reader.RecordBatch()
record.Release()
}
reader.Release()
}
}
// BenchmarkLocalQuery benchmarks query performance against local Spice runtime
func BenchmarkLocalQuery(b *testing.B) {
spice := NewSpiceClient()
defer func() {
if err := spice.Close(); err != nil {
b.Logf("warning: failed to close SpiceClient: %v", err)
}
}()
if err := spice.Init(); err != nil {
b.Fatalf("error initializing SpiceClient: %v", err)
}
ctx := context.Background()
if !spice.IsSpiceHealthy(ctx) {
b.Skip("Skipping - local Spice runtime is not healthy")
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
reader, err := spice.Sql(ctx, "SELECT trip_distance, fare_amount FROM taxi_trips WHERE trip_distance > 0 ORDER BY trip_distance LIMIT 100")
if err != nil {
b.Skipf("Skipping - requires local spice runtime with taxi_trips dataset: %v", err)
}
for reader.Next() {
record := reader.RecordBatch()
record.Release()
}
reader.Release()
}
}
// BenchmarkLocalSqlWithParams benchmarks parameterized query performance locally
func BenchmarkLocalSqlWithParams(b *testing.B) {
spice := NewSpiceClient()
defer func() {
if err := spice.Close(); err != nil {
b.Logf("warning: failed to close SpiceClient: %v", err)
}
}()
if err := spice.Init(); err != nil {
b.Fatalf("error initializing SpiceClient: %v", err)
}
ctx := context.Background()
if !spice.IsSpiceHealthy(ctx) {
b.Skip("Skipping - local Spice runtime is not healthy")
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
reader, err := spice.SqlWithParams(ctx,
"SELECT trip_distance, fare_amount FROM taxi_trips WHERE trip_distance > $1 AND fare_amount > $2 ORDER BY trip_distance LIMIT 100",
5.0, 20.0)
if err != nil {
b.Skipf("Skipping - requires local spice runtime with taxi_trips dataset: %v", err)
}
for reader.Next() {
record := reader.RecordBatch()
record.Release()
}
reader.Release()
}
}
// BenchmarkParameterBinding benchmarks parameter binding overhead
func BenchmarkParameterBinding(b *testing.B) {
spice := NewSpiceClient()
defer func() {
if err := spice.Close(); err != nil {
b.Logf("warning: failed to close SpiceClient: %v", err)
}
}()
if err := spice.Init(); err != nil {
b.Fatalf("error initializing SpiceClient: %v", err)
}
ctx := context.Background()
if !spice.IsSpiceHealthy(ctx) {
b.Skip("Skipping - local Spice runtime is not healthy")
}
testCases := []struct {
name string
params []interface{}
}{
{"1 param", []interface{}{5.0}},
{"2 params", []interface{}{5.0, 20.0}},
{"3 params", []interface{}{5.0, 20.0, "Credit Card"}},
{"5 params", []interface{}{5.0, 20.0, "Credit Card", 10.0, 30.0}},
}
for _, tc := range testCases {
b.Run(tc.name, func(b *testing.B) {
// Build SQL with appropriate number of parameters
sql := "SELECT 1 WHERE 1=1"
for i := 1; i <= len(tc.params); i++ {
sql += " AND $" + string(rune('0'+i)) + " IS NOT NULL"
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
reader, err := spice.SqlWithParams(ctx, sql, tc.params...)
if err != nil {
b.Skipf("Skipping: %v", err)
}
for reader.Next() {
record := reader.RecordBatch()
record.Release()
}
reader.Release()
}
})
}
}
// BenchmarkClientInitialization benchmarks client initialization overhead
func BenchmarkClientInitialization(b *testing.B) {
b.Run("Local", func(b *testing.B) {
for i := 0; i < b.N; i++ {
spice := NewSpiceClient()
if err := spice.Init(); err != nil {
b.Fatalf("error initializing SpiceClient: %v", err)
}
if err := spice.Close(); err != nil {
b.Logf("warning: failed to close SpiceClient: %v", err)
}
}
})
b.Run("Cloud", func(b *testing.B) {
ApiKey, exists := os.LookupEnv("SPICE_API_KEY")
if !exists || ApiKey == "" {
b.Skip("SPICE_API_KEY not set, skipping cloud authentication test")
}
for i := 0; i < b.N; i++ {
spice := NewSpiceClient()
if err := spice.Init(WithApiKey(ApiKey), WithSpiceCloudAddress()); err != nil {
b.Fatalf("error initializing SpiceClient: %v", err)
}
if err := spice.Close(); err != nil {
b.Logf("warning: failed to close SpiceClient: %v", err)
}
}
})
}
// BenchmarkHealthChecks benchmarks health check performance
func BenchmarkHealthChecks(b *testing.B) {
spice := NewSpiceClient()
defer func() {
if err := spice.Close(); err != nil {
b.Logf("warning: failed to close SpiceClient: %v", err)
}
}()
if err := spice.Init(); err != nil {
b.Fatalf("error initializing SpiceClient: %v", err)
}
ctx := context.Background()
b.Run("IsSpiceHealthy", func(b *testing.B) {
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = spice.IsSpiceHealthy(ctx)
}
})
b.Run("IsSpiceReady", func(b *testing.B) {
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = spice.IsSpiceReady(ctx)
}
})
}
// BenchmarkRecordProcessing benchmarks different record processing patterns
func BenchmarkRecordProcessing(b *testing.B) {
spice := NewSpiceClient()
defer func() {
if err := spice.Close(); err != nil {
b.Logf("warning: failed to close SpiceClient: %v", err)
}
}()
if err := spice.Init(); err != nil {
b.Fatalf("error initializing SpiceClient: %v", err)
}
ctx := context.Background()
if !spice.IsSpiceHealthy(ctx) {
b.Skip("Skipping - local Spice runtime is not healthy")
}
b.Run("Release immediately", func(b *testing.B) {
b.ResetTimer()
for i := 0; i < b.N; i++ {
reader, err := spice.Sql(ctx, "SELECT trip_distance FROM taxi_trips WHERE trip_distance > 0 ORDER BY trip_distance LIMIT 100")
if err != nil {
b.Skipf("Skipping: %v", err)
}
for reader.Next() {
record := reader.RecordBatch()
record.Release()
}
reader.Release()
}
})
b.Run("Process values", func(b *testing.B) {
b.ResetTimer()
for i := 0; i < b.N; i++ {
reader, err := spice.Sql(ctx, "SELECT trip_distance FROM taxi_trips WHERE trip_distance > 0 ORDER BY trip_distance LIMIT 100")
if err != nil {
b.Skipf("Skipping: %v", err)
}
var sum float64
for reader.Next() {
record := reader.RecordBatch()
col := record.Column(0)
for j := 0; j < int(record.NumRows()); j++ {
if !col.IsNull(j) {
switch v := col.(type) {
case *array.Float64:
sum += v.Value(j)
case *array.Float32:
sum += float64(v.Value(j))
}
}
}
record.Release()
}
reader.Release()
_ = sum // prevent optimization
}
})
}