-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbenchmark_test.go
176 lines (155 loc) · 3.74 KB
/
benchmark_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
package cel_go_benchmarks_test
import (
"encoding/json"
"fmt"
"io"
"os"
"strconv"
"testing"
"github.com/antonmedv/expr"
"github.com/google/cel-go/cel"
"github.com/google/cel-go/checker/decls"
"github.com/google/cel-go/interpreter"
"google.golang.org/protobuf/encoding/protojson"
"github.com/franchb/cel-go-benchmarks/internal/iterator"
benchmarkv1 "github.com/franchb/cel-go-benchmarks/proto/benchmark/v1"
)
const (
testdataFilename = "testdata/testdata_100.ndjson"
)
var (
iter *iterator.Iterator
celGoEnv *cel.Env
exprEnv expr.Option
)
func BenchmarkCelGo(b *testing.B) { benchmarkCelGo(b, `Message.meta2 == "March"`) }
func BenchmarkExpr(b *testing.B) { benchmarkExpr(b, `Message.Meta2 == "March"`) }
func benchmarkCelGo(b *testing.B, expression string) {
// Parse and check the expression.
p, issues := celGoEnv.Compile(expression)
if issues != nil && issues.Err() != nil {
b.Fatal(issues.Err())
}
prg, err := celGoEnv.Program(p, cel.EvalOptions(cel.OptOptimize))
if err != nil {
b.Fatalf("program creation error: %s\n", err)
}
b.ReportAllocs()
b.ResetTimer()
for i := 1; i <= 4; i *= 2 {
b.Run(strconv.Itoa(i), func(b *testing.B) {
b.SetParallelism(i)
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_, _, err := prg.Eval(&Request{Message: iter.Next()})
if err != nil {
b.Fatalf("runtime error: %s\n", err)
}
}
})
})
}
}
func benchmarkExpr(b *testing.B, expression string) {
program, err := expr.Compile(expression, exprEnv)
if err != nil {
panic(err)
}
b.ReportAllocs()
b.ResetTimer()
for i := 1; i <= 4; i *= 2 {
b.Run(strconv.Itoa(i), func(b *testing.B) {
b.SetParallelism(i)
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_, err := expr.Run(program, &Request{Message: iter.Next()})
if err != nil {
b.Fatalf("runtime error: %s\n", err)
}
}
})
})
}
}
func TestMain(m *testing.M) {
fmt.Println("cel-go benchmark")
if cache, err := loadCache(); err != nil {
_, _ = fmt.Fprintf(os.Stderr, "error: %v\n", err)
os.Exit(1)
} else {
iter = iterator.New(cache)
}
ce, err := prepareCelGoEnv()
if err != nil {
_, _ = fmt.Fprintf(os.Stderr, "error: %v\n", err)
os.Exit(1)
}
celGoEnv = ce
exprEnv = prepareExprEnv()
m.Run()
}
func prepareCelGoEnv() (*cel.Env, error) {
e, err := cel.NewEnv(
cel.ClearMacros(),
cel.Container("benchmarkv1"),
cel.Types(&benchmarkv1.Message{}),
cel.Declarations(
decls.NewVar("Message",
decls.NewObjectType("benchmark.v1.Message")),
),
)
if err != nil {
return nil, fmt.Errorf("environment creation error: %w", err)
}
return e, nil
}
type Request struct {
interpreter.Activation
Message *benchmarkv1.Message
}
func (r *Request) ResolveName(name string) (interface{}, bool) {
if name == "Message" {
return r.Message, true
}
return nil, false
}
func prepareExprEnv() expr.Option {
return expr.Env(&Request{})
}
func loadCache() ([]*benchmarkv1.Message, error) {
filename := os.Getenv(`BENCHMARK_DATA`)
if filename == "" {
filename = testdataFilename
}
file, err := os.Open(filename)
if err != nil {
return nil, fmt.Errorf("failed to create target file: %w", err)
}
defer file.Close()
cache, err := load(file)
if err != nil {
return nil, err
}
fmt.Printf("Loaded %d records\n", len(cache))
return cache, nil
}
func load(r io.Reader) ([]*benchmarkv1.Message, error) {
dec := json.NewDecoder(r)
cache := make([]*benchmarkv1.Message, 0)
for dec.More() {
var b json.RawMessage
if err := dec.Decode(&b); err != nil {
return nil, err
}
var m benchmarkv1.Message
err := protojson.UnmarshalOptions{
AllowPartial: false,
DiscardUnknown: false,
}.Unmarshal(b, &m)
if err != nil {
return nil, err
}
cache = append(cache, &m)
}
return cache, nil
}