forked from opensearch-project/opensearch-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopensearch_benchmark_test.go
More file actions
232 lines (202 loc) · 6.5 KB
/
Copy pathopensearch_benchmark_test.go
File metadata and controls
232 lines (202 loc) · 6.5 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
// SPDX-License-Identifier: Apache-2.0
//
// The OpenSearch Contributors require contributions made to
// this file be licensed under the Apache-2.0 license or a
// compatible open source license.
//
// Modifications Copyright OpenSearch Contributors. See
// GitHub history for details.
// Licensed to Elasticsearch B.V. under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. Elasticsearch B.V. licenses this file to you under
// the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
//go:build !integration
package opensearch_test
import (
"context"
"fmt"
"io"
"net/http"
"strconv"
"strings"
"testing"
"github.com/opensearch-project/opensearch-go/v5"
"github.com/opensearch-project/opensearch-go/v5/opensearchapi"
"github.com/opensearch-project/opensearch-go/v5/opensearchtransport"
)
type FakeTransport struct {
Response *http.Response
}
func (t *FakeTransport) RoundTrip(_ *http.Request) (*http.Response, error) {
response := t.Response
response.Body = io.NopCloser(strings.NewReader(`{
"name" : "es1",
"cluster_name" : "opensearch-go",
"cluster_uuid" : "clusteruuid",
"version" : {
"number" : "2.7.0",
"distribution" : "opensearch",
"build_type" : "tar",
"build_hash" : "b7a6e09e492b1e965d827525f7863b366ef0e304",
"build_date" : "2023-04-27T21:43:09.523336706Z",
"build_snapshot" : false,
"lucene_version" : "9.5.0",
"minimum_wire_compatibility_version" : "7.10.0",
"minimum_index_compatibility_version" : "7.0.0"
}
}`))
return t.Response, nil
}
func newFakeTransport(_ *testing.B, resp http.Response) *FakeTransport {
return &FakeTransport{
Response: &resp,
}
}
// BenchmarkClient measures opensearch.NewClient overhead. Each iteration
// constructs a new client (and therefore spawns the transport's background
// goroutines), then closes it via the transport so the goroutines exit. We
// don't really care about the per-NewClient cost in steady-state usage --
// real callers build one client per process -- but this measurement is kept
// so changes to the construction path don't go unnoticed.
func BenchmarkClient(b *testing.B) {
defaultResponse := http.Response{
Status: fmt.Sprintf("%d %s", http.StatusOK, http.StatusText(http.StatusOK)),
StatusCode: http.StatusOK,
ContentLength: 2,
Header: http.Header(map[string][]string{"Content-Type": {"application/json"}}),
Body: io.NopCloser(strings.NewReader(`{}`)),
}
b.ReportAllocs()
b.Run("Create client with defaults", func(b *testing.B) {
for i := 0; i < b.N; i++ {
c, err := opensearch.NewClient(opensearch.Config{Transport: newFakeTransport(b, defaultResponse)})
if err != nil {
b.Fatalf("Unexpected error when creating a client: %q", err)
}
// Close the underlying transport so the per-client background
// goroutines (cluster-health/node-stats tickers) exit. Without
// this the bench leaks goroutines linearly with b.N and the Go
// runtime eventually starves the bench loop itself.
_ = c.Transport.(*opensearchtransport.Transport).Close()
}
})
}
func BenchmarkClientAPI(b *testing.B) {
infoResponse := http.Response{
Status: fmt.Sprintf("%d %s", http.StatusOK, http.StatusText(http.StatusOK)),
StatusCode: http.StatusOK,
Header: http.Header(map[string][]string{"Content-Type": {"application/json"}}),
}
b.ReportAllocs()
ctx := context.Background()
client, err := opensearchapi.NewClient(
opensearchapi.Config{
Client: opensearch.Config{
Addresses: []string{"http://localhost:9200"},
Transport: newFakeTransport(b, infoResponse),
},
},
)
if err != nil {
b.Fatalf("ERROR: %s", err)
}
b.Run("InfoRequest{}.Do()", func(b *testing.B) {
b.ResetTimer()
for i := 0; i < b.N; i++ {
if _, err := client.Info(ctx, nil); err != nil {
b.Errorf("Unexpected error when getting a response: %s", err)
}
}
})
b.Run("client.Index()", func(b *testing.B) {
b.ResetTimer()
var body strings.Builder
for i := 0; i < b.N; i++ {
docID := strconv.FormatInt(int64(i), 10)
body.Reset()
body.WriteString(`{"foo" : "bar `)
body.WriteString(docID)
body.WriteString(` " }`)
req := opensearchapi.IndexReq{
Index: "bench-index",
ID: docID,
Body: strings.NewReader(body.String()),
Params: &opensearchapi.IndexParams{
Refresh: "true",
DebugParams: opensearchapi.DebugParams{
Pretty: true,
},
TimeoutParams: opensearchapi.TimeoutParams{
Timeout: 100,
},
},
}
_, err := client.Doc.Index(ctx, req)
if err != nil {
b.Errorf("Unexpected error when getting a response: %s", err)
}
}
})
b.Run("client.Search()", func(b *testing.B) {
b.ResetTimer()
body := `{"foo" : "bar"}`
req := &opensearchapi.SearchReq{
Indices: []string{"bench-index"},
BodyReader: strings.NewReader(body),
Params: &opensearchapi.SearchParams{
Size: opensearch.ToPointer(25),
DebugParams: opensearchapi.DebugParams{
Pretty: true,
},
TimeoutParams: opensearchapi.TimeoutParams{
Timeout: 100,
},
},
}
for i := 0; i < b.N; i++ {
_, err := client.Search(ctx, req)
if err != nil {
b.Errorf("Unexpected error when getting a response: %s", err)
}
}
})
b.Run("client.Bulk()", func(b *testing.B) {
b.ResetTimer()
var body strings.Builder
for i := 0; i < b.N; i++ {
docID := strconv.FormatInt(int64(i), 10)
body.Reset()
body.WriteString(`{"index" : { "_index" : "bench-index", "_type" : "_doc", "_id" : "` + docID + `" }}`)
body.WriteString(`{"foo" : "bar `)
body.WriteString(docID)
body.WriteString(` " }`)
req := opensearchapi.BulkReq{
Body: strings.NewReader(body.String()),
Params: &opensearchapi.BulkParams{
Refresh: "true",
DebugParams: opensearchapi.DebugParams{
Pretty: true,
},
TimeoutParams: opensearchapi.TimeoutParams{
Timeout: 100,
},
},
}
if _, err := client.Doc.Bulk(ctx, req); err != nil {
b.Errorf("Unexpected error when getting a response: %s", err)
}
}
})
}