forked from couchbase/gocb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bucket_ping.go
306 lines (268 loc) · 6.93 KB
/
bucket_ping.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
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
package gocb
import (
"encoding/json"
"fmt"
"net/http"
"sync"
"time"
"github.com/google/uuid"
"gopkg.in/couchbase/gocbcore.v7"
)
func diagServiceString(service ServiceType) string {
switch service {
case MemdService:
return "kv"
case CapiService:
return "view"
case MgmtService:
return "mgmt"
case N1qlService:
return "n1ql"
case FtsService:
return "fts"
case CbasService:
return "cbas"
}
return "?"
}
// PingServiceEntry represents a single entry in a ping report.
type PingServiceEntry struct {
Service ServiceType
Endpoint string
Success bool
Latency time.Duration
}
// PingReport encapsulates the details from a executed ping operation.
type PingReport struct {
Services []PingServiceEntry
}
type jsonPingServiceEntry struct {
Remote string `json:"remote"`
LatencyUs uint64 `json:"latency_us"`
Success bool `json:"success"`
}
type jsonPingReport struct {
Version int `json:"version"`
Id string `json:"id"`
Sdk string `json:"sdk"`
Services map[string][]jsonPingServiceEntry `json:"services"`
}
// MarshalJSON generates a JSON representation of this ping report.
func (report *PingReport) MarshalJSON() ([]byte, error) {
jsonReport := jsonPingReport{
Version: 1,
Id: uuid.New().String(),
Sdk: "gocb/" + Version() + " " + "gocbcore/" + gocbcore.Version(),
Services: make(map[string][]jsonPingServiceEntry),
}
for _, service := range report.Services {
serviceStr := diagServiceString(service.Service)
jsonReport.Services[serviceStr] = append(jsonReport.Services[serviceStr], jsonPingServiceEntry{
Remote: service.Endpoint,
LatencyUs: uint64(service.Latency / time.Nanosecond),
})
}
return json.Marshal(&jsonReport)
}
func (b *Bucket) pingKv() (pingsOut []gocbcore.PingResult, errOut error) {
signal := make(chan bool, 1)
op, err := b.client.Ping(func(results []gocbcore.PingResult) {
pingsOut = make([]gocbcore.PingResult, len(results))
for pingIdx, ping := range results {
// We rewrite the cancelled errors into timeout errors here.
if ping.Error == gocbcore.ErrCancelled {
ping.Error = ErrTimeout
}
pingsOut[pingIdx] = ping
}
signal <- true
})
if err != nil {
return nil, err
}
timeoutTmr := gocbcore.AcquireTimer(b.opTimeout)
select {
case <-signal:
gocbcore.ReleaseTimer(timeoutTmr, false)
return
case <-timeoutTmr.C:
gocbcore.ReleaseTimer(timeoutTmr, true)
if !op.Cancel() {
<-signal
return
}
return nil, ErrTimeout
}
}
// Ping will ping a list of services and verify they are active and
// responding in an acceptable period of time.
//
// Experimental: This API is subject to change at any time.
func (b *Bucket) Ping(services []ServiceType) (*PingReport, error) {
numServices := 0
waitCh := make(chan error, 10)
report := &PingReport{}
var reportLock sync.Mutex
if services == nil {
services = []ServiceType{
MemdService,
CapiService,
N1qlService,
FtsService,
}
}
httpReq := func(service ServiceType, endpoint, url string) (time.Duration, error) {
c := b.cluster
startTime := time.Now()
client := b.client.HttpClient()
reqUri := fmt.Sprintf("%s/%s", endpoint, url)
req, err := http.NewRequest("GET", reqUri, nil)
if err != nil {
return 0, err
}
timeout := 60 * time.Second
if service == N1qlService {
if b.n1qlTimeout < c.n1qlTimeout {
timeout = b.n1qlTimeout
} else {
timeout = c.n1qlTimeout
}
} else if service == FtsService {
if b.ftsTimeout < c.ftsTimeout {
timeout = b.ftsTimeout
} else {
timeout = c.ftsTimeout
}
} else if service == CbasService {
timeout = c.analyticsTimeout
}
resp, err := doHttpWithTimeout(client, req, timeout)
if err != nil {
return 0, err
}
err = resp.Body.Close()
if err != nil {
logDebugf("Failed to close http request: %s", err)
}
pingLatency := time.Now().Sub(startTime)
return pingLatency, err
}
for _, serviceType := range services {
switch serviceType {
case MemdService:
numServices++
go func() {
pings, err := b.pingKv()
if err != nil {
logWarnf("Failed to ping KV for report: %s", err)
waitCh <- nil
return
}
reportLock.Lock()
// We intentionally ignore errors here and simply include
// any non-error pings that we have received. Note that
// gocbcore's ping command, when cancelled, still returns
// any pings that had occurred before the operation was
// cancelled and then marks the rest as errors.
for _, ping := range pings {
wasSuccess := true
if ping.Error != nil {
wasSuccess = false
}
report.Services = append(report.Services, PingServiceEntry{
Service: MemdService,
Endpoint: ping.Endpoint,
Success: wasSuccess,
Latency: ping.Latency,
})
}
reportLock.Unlock()
waitCh <- nil
}()
case CapiService:
// View Service is not currently supported as a ping target
case N1qlService:
numServices++
go func() {
pingLatency := time.Duration(0)
endpoint, err := b.getN1qlEp()
if err == nil {
pingLatency, err = httpReq(N1qlService, endpoint, "/admin/ping")
}
reportLock.Lock()
if err != nil {
report.Services = append(report.Services, PingServiceEntry{
Service: N1qlService,
Endpoint: endpoint,
Success: false,
})
} else {
report.Services = append(report.Services, PingServiceEntry{
Service: N1qlService,
Endpoint: endpoint,
Success: true,
Latency: pingLatency,
})
}
reportLock.Unlock()
waitCh <- nil
}()
case FtsService:
numServices++
go func() {
pingLatency := time.Duration(0)
endpoint, err := b.getFtsEp()
if err == nil {
pingLatency, err = httpReq(FtsService, endpoint, "/api/ping")
}
reportLock.Lock()
if err != nil {
report.Services = append(report.Services, PingServiceEntry{
Service: FtsService,
Endpoint: endpoint,
Success: false,
})
} else {
report.Services = append(report.Services, PingServiceEntry{
Service: FtsService,
Endpoint: endpoint,
Success: true,
Latency: pingLatency,
})
}
reportLock.Unlock()
waitCh <- nil
}()
case CbasService:
numServices++
go func() {
pingLatency := time.Duration(0)
endpoint, err := b.getCbasEp()
if err == nil {
pingLatency, err = httpReq(CbasService, endpoint, "/admin/ping")
}
reportLock.Lock()
if err != nil {
report.Services = append(report.Services, PingServiceEntry{
Service: CbasService,
Endpoint: endpoint,
Success: false,
})
} else {
report.Services = append(report.Services, PingServiceEntry{
Service: CbasService,
Endpoint: endpoint,
Success: true,
Latency: pingLatency,
})
}
reportLock.Unlock()
waitCh <- nil
}()
}
}
for i := 0; i < numServices; i++ {
<-waitCh
}
return report, nil
}