forked from couchbase/gocb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cluster_analyticsindexes.go
601 lines (510 loc) · 14.7 KB
/
cluster_analyticsindexes.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
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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
package gocb
import (
"context"
"encoding/json"
"fmt"
"io/ioutil"
"strings"
"time"
gocbcore "github.com/couchbase/gocbcore/v8"
)
// AnalyticsIndexManager provides methods for performing Couchbase Analytics index management.
// Volatile: This API is subject to change at any time.
type AnalyticsIndexManager struct {
httpClient httpProvider
executeQuery func(statement string, opts *AnalyticsOptions) (*AnalyticsResult, error)
globalTimeout time.Duration
}
// AnalyticsDataset contains information about an analytics dataset,
type AnalyticsDataset struct {
Name string `json:"DatasetName"`
DataverseName string `json:"DataverseName"`
LinkName string `json:"LinkName"`
BucketName string `json:"BucketName"`
}
// AnalyticsIndex contains information about an analytics index,
type AnalyticsIndex struct {
Name string `json:"IndexName"`
DatasetName string `json:"DatasetName"`
DataverseName string `json:"DataverseName"`
IsPrimary bool `json:"IsPrimary"`
}
// CreateAnalyticsDataverseOptions is the set of options available to the AnalyticsManager CreateDataverse operation.
type CreateAnalyticsDataverseOptions struct {
Timeout time.Duration
Context context.Context
IgnoreIfExists bool
}
// CreateDataverse creates a new analytics dataset.
func (am *AnalyticsIndexManager) CreateDataverse(dataverseName string, opts *CreateAnalyticsDataverseOptions) error {
if dataverseName == "" {
return invalidArgumentsError{
message: "dataset name cannot be empty",
}
}
if opts == nil {
opts = &CreateAnalyticsDataverseOptions{}
}
ctx, cancel := contextFromMaybeTimeout(opts.Context, opts.Timeout, am.globalTimeout)
if cancel != nil {
defer cancel()
}
var ignoreStr string
if opts.IgnoreIfExists {
ignoreStr = "IF NOT EXISTS"
}
q := fmt.Sprintf("CREATE DATAVERSE `%s` %s", dataverseName, ignoreStr)
result, err := am.executeQuery(q, &AnalyticsOptions{
Context: ctx,
})
if err != nil {
aErr, ok := err.(AnalyticsQueryError)
if ok {
return analyticsIndexesError{
statusCode: aErr.HTTPStatus(),
message: aErr.Message(),
analyticsCode: aErr.Code(),
}
}
return err
}
return result.Close()
}
// DropAnalyticsDataverseOptions is the set of options available to the AnalyticsManager DropDataverse operation.
type DropAnalyticsDataverseOptions struct {
Timeout time.Duration
Context context.Context
IgnoreIfNotExists bool
}
// DropDataverse drops an analytics dataset.
func (am *AnalyticsIndexManager) DropDataverse(dataverseName string, opts *DropAnalyticsDataverseOptions) error {
if opts == nil {
opts = &DropAnalyticsDataverseOptions{}
}
ctx, cancel := contextFromMaybeTimeout(opts.Context, opts.Timeout, am.globalTimeout)
if cancel != nil {
defer cancel()
}
var ignoreStr string
if opts.IgnoreIfNotExists {
ignoreStr = "IF EXISTS"
}
q := fmt.Sprintf("DROP DATAVERSE %s %s", dataverseName, ignoreStr)
result, err := am.executeQuery(q, &AnalyticsOptions{
Context: ctx,
})
if err != nil {
aErr, ok := err.(AnalyticsQueryError)
if ok {
return analyticsIndexesError{
statusCode: aErr.HTTPStatus(),
message: aErr.Message(),
analyticsCode: aErr.Code(),
}
}
return err
}
return result.Close()
}
// CreateAnalyticsDatasetOptions is the set of options available to the AnalyticsManager CreateDataset operation.
type CreateAnalyticsDatasetOptions struct {
Timeout time.Duration
Context context.Context
IgnoreIfExists bool
// Condition can be used to set the WHERE clause for the dataset creation.
Condition string
DataverseName string
}
// CreateDataset creates a new analytics dataset.
func (am *AnalyticsIndexManager) CreateDataset(datasetName, bucketName string, opts *CreateAnalyticsDatasetOptions) error {
if datasetName == "" {
return invalidArgumentsError{
message: "dataset name cannot be empty",
}
}
if opts == nil {
opts = &CreateAnalyticsDatasetOptions{}
}
ctx, cancel := contextFromMaybeTimeout(opts.Context, opts.Timeout, am.globalTimeout)
if cancel != nil {
defer cancel()
}
var ignoreStr string
if opts.IgnoreIfExists {
ignoreStr = "IF NOT EXISTS"
}
var where string
if opts.Condition != "" {
if !strings.HasPrefix(strings.ToUpper(opts.Condition), "WHERE") {
where = "WHERE "
}
where += opts.Condition
}
if opts.DataverseName == "" {
datasetName = fmt.Sprintf("`%s`", datasetName)
} else {
datasetName = fmt.Sprintf("`%s`.`%s`", opts.DataverseName, datasetName)
}
q := fmt.Sprintf("CREATE DATASET %s %s ON `%s` %s", ignoreStr, datasetName, bucketName, where)
result, err := am.executeQuery(q, &AnalyticsOptions{
Context: ctx,
})
if err != nil {
aErr, ok := err.(AnalyticsQueryError)
if ok {
return analyticsIndexesError{
statusCode: aErr.HTTPStatus(),
message: aErr.Message(),
analyticsCode: aErr.Code(),
}
}
return err
}
return result.Close()
}
// DropAnalyticsDatasetOptions is the set of options available to the AnalyticsManager DropDataset operation.
type DropAnalyticsDatasetOptions struct {
Timeout time.Duration
Context context.Context
IgnoreIfNotExists bool
DataverseName string
}
// DropDataset drops an analytics dataset.
func (am *AnalyticsIndexManager) DropDataset(datasetName string, opts *DropAnalyticsDatasetOptions) error {
if opts == nil {
opts = &DropAnalyticsDatasetOptions{}
}
ctx, cancel := contextFromMaybeTimeout(opts.Context, opts.Timeout, am.globalTimeout)
if cancel != nil {
defer cancel()
}
var ignoreStr string
if opts.IgnoreIfNotExists {
ignoreStr = "IF EXISTS"
}
if opts.DataverseName == "" {
datasetName = fmt.Sprintf("`%s`", datasetName)
} else {
datasetName = fmt.Sprintf("`%s`.`%s`", opts.DataverseName, datasetName)
}
q := fmt.Sprintf("DROP DATASET %s %s", datasetName, ignoreStr)
result, err := am.executeQuery(q, &AnalyticsOptions{
Context: ctx,
})
if err != nil {
aErr, ok := err.(AnalyticsQueryError)
if ok {
return analyticsIndexesError{
statusCode: aErr.HTTPStatus(),
message: aErr.Message(),
analyticsCode: aErr.Code(),
}
}
return err
}
return result.Close()
}
// GetAllAnalyticsDatasetsOptions is the set of options available to the AnalyticsManager GetAllDatasets operation.
type GetAllAnalyticsDatasetsOptions struct {
Timeout time.Duration
Context context.Context
}
// GetAllDatasets gets all analytics datasets.
func (am *AnalyticsIndexManager) GetAllDatasets(opts *GetAllAnalyticsDatasetsOptions) ([]AnalyticsDataset, error) {
if opts == nil {
opts = &GetAllAnalyticsDatasetsOptions{}
}
ctx, cancel := contextFromMaybeTimeout(opts.Context, opts.Timeout, am.globalTimeout)
if cancel != nil {
defer cancel()
}
result, err := am.executeQuery(
"SELECT d.* FROM Metadata.`Dataset` d WHERE d.DataverseName <> \"Metadata\"",
&AnalyticsOptions{
Context: ctx,
})
if err != nil {
aErr, ok := err.(AnalyticsQueryError)
if ok {
return nil, analyticsIndexesError{
statusCode: aErr.HTTPStatus(),
message: aErr.Message(),
analyticsCode: aErr.Code(),
}
}
return nil, err
}
var datasets []AnalyticsDataset
var dataset AnalyticsDataset
for result.Next(&dataset) {
datasets = append(datasets, dataset)
}
err = result.Close()
if err != nil {
return nil, err
}
return datasets, nil
}
// CreateAnalyticsIndexOptions is the set of options available to the AnalyticsManager CreateIndex operation.
type CreateAnalyticsIndexOptions struct {
Timeout time.Duration
Context context.Context
IgnoreIfExists bool
DataverseName string
}
// CreateIndex creates a new analytics dataset.
func (am *AnalyticsIndexManager) CreateIndex(datasetName, indexName string, fields map[string]string, opts *CreateAnalyticsIndexOptions) error {
if indexName == "" {
return invalidArgumentsError{
message: "index name cannot be empty",
}
}
if len(fields) <= 0 {
return invalidArgumentsError{
message: "you must specify at least one field to index",
}
}
if opts == nil {
opts = &CreateAnalyticsIndexOptions{}
}
ctx, cancel := contextFromMaybeTimeout(opts.Context, opts.Timeout, am.globalTimeout)
if cancel != nil {
defer cancel()
}
var ignoreStr string
if opts.IgnoreIfExists {
ignoreStr = "IF NOT EXISTS"
}
var indexFields []string
for name, typ := range fields {
indexFields = append(indexFields, name+":"+typ)
}
if opts.DataverseName == "" {
datasetName = fmt.Sprintf("`%s`", datasetName)
} else {
datasetName = fmt.Sprintf("`%s`.`%s`", opts.DataverseName, datasetName)
}
q := fmt.Sprintf("CREATE INDEX `%s` %s ON %s (%s)", indexName, ignoreStr, datasetName, strings.Join(indexFields, ","))
result, err := am.executeQuery(q, &AnalyticsOptions{
Context: ctx,
})
if err != nil {
aErr, ok := err.(AnalyticsQueryError)
if ok {
return analyticsIndexesError{
statusCode: aErr.HTTPStatus(),
message: aErr.Message(),
analyticsCode: aErr.Code(),
}
}
return err
}
return result.Close()
}
// DropAnalyticsIndexOptions is the set of options available to the AnalyticsManager DropIndex operation.
type DropAnalyticsIndexOptions struct {
Timeout time.Duration
Context context.Context
IgnoreIfNotExists bool
DataverseName string
}
// DropIndex drops an analytics index.
func (am *AnalyticsIndexManager) DropIndex(datasetName, indexName string, opts *DropAnalyticsIndexOptions) error {
if opts == nil {
opts = &DropAnalyticsIndexOptions{}
}
ctx, cancel := contextFromMaybeTimeout(opts.Context, opts.Timeout, am.globalTimeout)
if cancel != nil {
defer cancel()
}
var ignoreStr string
if opts.IgnoreIfNotExists {
ignoreStr = "IF EXISTS"
}
if opts.DataverseName == "" {
datasetName = fmt.Sprintf("`%s`", datasetName)
} else {
datasetName = fmt.Sprintf("`%s`.`%s`", opts.DataverseName, datasetName)
}
q := fmt.Sprintf("DROP INDEX %s.%s %s", datasetName, indexName, ignoreStr)
result, err := am.executeQuery(q, &AnalyticsOptions{
Context: ctx,
})
if err != nil {
aErr, ok := err.(AnalyticsQueryError)
if ok {
return analyticsIndexesError{
statusCode: aErr.HTTPStatus(),
message: aErr.Message(),
analyticsCode: aErr.Code(),
}
}
return err
}
return result.Close()
}
// GetAllAnalyticsIndexesOptions is the set of options available to the AnalyticsManager GetAllIndexes operation.
type GetAllAnalyticsIndexesOptions struct {
Timeout time.Duration
Context context.Context
}
// GetAllIndexes gets all analytics indexes.
func (am *AnalyticsIndexManager) GetAllIndexes(opts *GetAllAnalyticsIndexesOptions) ([]AnalyticsIndex, error) {
if opts == nil {
opts = &GetAllAnalyticsIndexesOptions{}
}
ctx, cancel := contextFromMaybeTimeout(opts.Context, opts.Timeout, am.globalTimeout)
if cancel != nil {
defer cancel()
}
result, err := am.executeQuery(
"SELECT d.* FROM Metadata.`Index` d WHERE d.DataverseName <> \"Metadata\"",
&AnalyticsOptions{
Context: ctx,
})
if err != nil {
aErr, ok := err.(AnalyticsQueryError)
if ok {
return nil, analyticsIndexesError{
statusCode: aErr.HTTPStatus(),
message: aErr.Message(),
analyticsCode: aErr.Code(),
}
}
return nil, err
}
var indexes []AnalyticsIndex
var index AnalyticsIndex
for result.Next(&index) {
indexes = append(indexes, index)
}
err = result.Close()
if err != nil {
return nil, err
}
return indexes, nil
}
// ConnectAnalyticsLinkOptions is the set of options available to the AnalyticsManager ConnectLink operation.
type ConnectAnalyticsLinkOptions struct {
Timeout time.Duration
Context context.Context
// Name of the link, if empty defaults to Local
LinkName string
}
// ConnectLink connects an analytics link.
func (am *AnalyticsIndexManager) ConnectLink(opts *ConnectAnalyticsLinkOptions) error {
if opts == nil {
opts = &ConnectAnalyticsLinkOptions{}
}
ctx, cancel := contextFromMaybeTimeout(opts.Context, opts.Timeout, am.globalTimeout)
if cancel != nil {
defer cancel()
}
if opts.LinkName == "" {
opts.LinkName = "Local"
}
result, err := am.executeQuery(
fmt.Sprintf("CONNECT LINK %s", opts.LinkName),
&AnalyticsOptions{
Context: ctx,
})
if err != nil {
aErr, ok := err.(AnalyticsQueryError)
if ok {
return analyticsIndexesError{
statusCode: aErr.HTTPStatus(),
message: aErr.Message(),
analyticsCode: aErr.Code(),
}
}
return err
}
return result.Close()
}
// DisconnectAnalyticsLinkOptions is the set of options available to the AnalyticsManager DisconnectLink operation.
type DisconnectAnalyticsLinkOptions struct {
Timeout time.Duration
Context context.Context
// Name of the link, if empty defaults to Local
LinkName string
}
// DisconnectLink disconnects an analytics link.
func (am *AnalyticsIndexManager) DisconnectLink(opts *DisconnectAnalyticsLinkOptions) error {
if opts == nil {
opts = &DisconnectAnalyticsLinkOptions{}
}
ctx, cancel := contextFromMaybeTimeout(opts.Context, opts.Timeout, am.globalTimeout)
if cancel != nil {
defer cancel()
}
if opts.LinkName == "" {
opts.LinkName = "Local"
}
result, err := am.executeQuery(
fmt.Sprintf("DISCONNECT LINK %s", opts.LinkName),
&AnalyticsOptions{
Context: ctx,
})
if err != nil {
aErr, ok := err.(AnalyticsQueryError)
if ok {
return analyticsIndexesError{
statusCode: aErr.HTTPStatus(),
message: aErr.Message(),
analyticsCode: aErr.Code(),
}
}
return err
}
return result.Close()
}
// GetPendingMutationsAnalyticsOptions is the set of options available to the user manager GetPendingMutations operation.
type GetPendingMutationsAnalyticsOptions struct {
Timeout time.Duration
Context context.Context
}
// GetPendingMutations returns the number of pending mutations for all indexes in the form of dataverse.dataset:mutations.
func (am *AnalyticsIndexManager) GetPendingMutations(opts *GetPendingMutationsAnalyticsOptions) (map[string]int, error) {
if opts == nil {
opts = &GetPendingMutationsAnalyticsOptions{}
}
ctx, cancel := contextFromMaybeTimeout(opts.Context, opts.Timeout, am.globalTimeout)
if cancel != nil {
defer cancel()
}
req := &gocbcore.HttpRequest{
Service: gocbcore.ServiceType(AnalyticsService),
Method: "GET",
Path: fmt.Sprintf("/analytics/node/agg/stats/remaining"),
Context: ctx,
}
resp, err := am.httpClient.DoHttpRequest(req)
if err != nil {
return nil, err
}
if resp.StatusCode < 200 || resp.StatusCode >= 300 {
data, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, err
}
err = resp.Body.Close()
if err != nil {
logDebugf("Failed to close socket (%s)", err)
}
return nil, analyticsIndexesError{
statusCode: resp.StatusCode,
message: string(data),
}
}
pending := make(map[string]int)
jsonDec := json.NewDecoder(resp.Body)
err = jsonDec.Decode(&pending)
if err != nil {
return nil, err
}
err = resp.Body.Close()
if err != nil {
logDebugf("Failed to close socket (%s)", err)
}
return pending, nil
}