-
Notifications
You must be signed in to change notification settings - Fork 104
/
cluster_analyticsindexes.go
546 lines (458 loc) · 19 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
package gocb
import (
"context"
"time"
)
// AnalyticsIndexManager provides methods for performing Couchbase Analytics index management.
type AnalyticsIndexManager struct {
controller *providerController[analyticsIndexProvider]
}
// AnalyticsDataset contains information about an analytics dataset.
type AnalyticsDataset struct {
Name string
DataverseName string
LinkName string
BucketName string
}
func (ad *AnalyticsDataset) fromData(data jsonAnalyticsDataset) error {
ad.Name = data.DatasetName
ad.DataverseName = data.DataverseName
ad.LinkName = data.LinkName
ad.BucketName = data.BucketName
return nil
}
// AnalyticsIndex contains information about an analytics index.
type AnalyticsIndex struct {
Name string
DatasetName string
DataverseName string
IsPrimary bool
}
func (ai *AnalyticsIndex) fromData(data jsonAnalyticsIndex) error {
ai.Name = data.IndexName
ai.DatasetName = data.DatasetName
ai.DataverseName = data.DataverseName
ai.IsPrimary = data.IsPrimary
return nil
}
// CreateAnalyticsDataverseOptions is the set of options available to the AnalyticsManager CreateDataverse operation.
type CreateAnalyticsDataverseOptions struct {
IgnoreIfExists bool
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
}
// CreateDataverse creates a new analytics dataset.
func (am *AnalyticsIndexManager) CreateDataverse(dataverseName string, opts *CreateAnalyticsDataverseOptions) error {
return autoOpControlErrorOnly(am.controller, "manager_analytics_create_dataverse", func(provider analyticsIndexProvider) error {
if opts == nil {
opts = &CreateAnalyticsDataverseOptions{}
}
if dataverseName == "" {
return invalidArgumentsError{
message: "dataset name cannot be empty",
}
}
return provider.CreateDataverse(dataverseName, opts)
})
}
// DropAnalyticsDataverseOptions is the set of options available to the AnalyticsManager DropDataverse operation.
type DropAnalyticsDataverseOptions struct {
IgnoreIfNotExists bool
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
}
// DropDataverse drops an analytics dataset.
func (am *AnalyticsIndexManager) DropDataverse(dataverseName string, opts *DropAnalyticsDataverseOptions) error {
return autoOpControlErrorOnly(am.controller, "manager_analytics_drop_dataverse", func(provider analyticsIndexProvider) error {
if opts == nil {
opts = &DropAnalyticsDataverseOptions{}
}
return provider.DropDataverse(dataverseName, opts)
})
}
// CreateAnalyticsDatasetOptions is the set of options available to the AnalyticsManager CreateDataset operation.
type CreateAnalyticsDatasetOptions struct {
IgnoreIfExists bool
Condition string
DataverseName string
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
}
// CreateDataset creates a new analytics dataset.
func (am *AnalyticsIndexManager) CreateDataset(datasetName, bucketName string, opts *CreateAnalyticsDatasetOptions) error {
return autoOpControlErrorOnly(am.controller, "manager_analytics_create_dataset", func(provider analyticsIndexProvider) error {
if opts == nil {
opts = &CreateAnalyticsDatasetOptions{}
}
if datasetName == "" {
return invalidArgumentsError{
message: "dataset name cannot be empty",
}
}
return provider.CreateDataset(datasetName, bucketName, opts)
})
}
// DropAnalyticsDatasetOptions is the set of options available to the AnalyticsManager DropDataset operation.
type DropAnalyticsDatasetOptions struct {
IgnoreIfNotExists bool
DataverseName string
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
}
// DropDataset drops an analytics dataset.
func (am *AnalyticsIndexManager) DropDataset(datasetName string, opts *DropAnalyticsDatasetOptions) error {
return autoOpControlErrorOnly(am.controller, "manager_analytics_drop_dataset", func(provider analyticsIndexProvider) error {
if opts == nil {
opts = &DropAnalyticsDatasetOptions{}
}
return provider.DropDataset(datasetName, opts)
})
}
// GetAllAnalyticsDatasetsOptions is the set of options available to the AnalyticsManager GetAllDatasets operation.
type GetAllAnalyticsDatasetsOptions struct {
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
}
// GetAllDatasets gets all analytics datasets.
func (am *AnalyticsIndexManager) GetAllDatasets(opts *GetAllAnalyticsDatasetsOptions) ([]AnalyticsDataset, error) {
return autoOpControl(am.controller, "manager_analytics_get_all_datasets", func(provider analyticsIndexProvider) ([]AnalyticsDataset, error) {
if opts == nil {
opts = &GetAllAnalyticsDatasetsOptions{}
}
return provider.GetAllDatasets(opts)
})
}
// CreateAnalyticsIndexOptions is the set of options available to the AnalyticsManager CreateIndex operation.
type CreateAnalyticsIndexOptions struct {
IgnoreIfExists bool
DataverseName string
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
}
// CreateIndex creates a new analytics dataset.
func (am *AnalyticsIndexManager) CreateIndex(datasetName, indexName string, fields map[string]string, opts *CreateAnalyticsIndexOptions) error {
return autoOpControlErrorOnly(am.controller, "manager_analytics_create_index", func(provider analyticsIndexProvider) error {
if opts == nil {
opts = &CreateAnalyticsIndexOptions{}
}
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",
}
}
return provider.CreateIndex(datasetName, indexName, fields, opts)
})
}
// DropAnalyticsIndexOptions is the set of options available to the AnalyticsManager DropIndex operation.
type DropAnalyticsIndexOptions struct {
IgnoreIfNotExists bool
DataverseName string
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
}
// DropIndex drops an analytics index.
func (am *AnalyticsIndexManager) DropIndex(datasetName, indexName string, opts *DropAnalyticsIndexOptions) error {
return autoOpControlErrorOnly(am.controller, "manager_analytics_drop_index", func(provider analyticsIndexProvider) error {
if opts == nil {
opts = &DropAnalyticsIndexOptions{}
}
return provider.DropIndex(datasetName, indexName, opts)
})
}
// GetAllAnalyticsIndexesOptions is the set of options available to the AnalyticsManager GetAllIndexes operation.
type GetAllAnalyticsIndexesOptions struct {
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
}
// GetAllIndexes gets all analytics indexes.
func (am *AnalyticsIndexManager) GetAllIndexes(opts *GetAllAnalyticsIndexesOptions) ([]AnalyticsIndex, error) {
return autoOpControl(am.controller, "manager_analytics_get_all_indexes", func(provider analyticsIndexProvider) ([]AnalyticsIndex, error) {
if opts == nil {
opts = &GetAllAnalyticsIndexesOptions{}
}
return provider.GetAllIndexes(opts)
})
}
// ConnectAnalyticsLinkOptions is the set of options available to the AnalyticsManager ConnectLink operation.
type ConnectAnalyticsLinkOptions struct {
LinkName string
DataverseName string
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
}
// ConnectLink connects an analytics link.
func (am *AnalyticsIndexManager) ConnectLink(opts *ConnectAnalyticsLinkOptions) error {
return autoOpControlErrorOnly(am.controller, "manager_analytics_connect_link", func(provider analyticsIndexProvider) error {
if opts == nil {
opts = &ConnectAnalyticsLinkOptions{}
}
return provider.ConnectLink(opts)
})
}
// DisconnectAnalyticsLinkOptions is the set of options available to the AnalyticsManager DisconnectLink operation.
type DisconnectAnalyticsLinkOptions struct {
LinkName string
DataverseName string
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
}
// DisconnectLink disconnects an analytics link.
func (am *AnalyticsIndexManager) DisconnectLink(opts *DisconnectAnalyticsLinkOptions) error {
return autoOpControlErrorOnly(am.controller, "manager_analytics_disconnect_link", func(provider analyticsIndexProvider) error {
if opts == nil {
opts = &DisconnectAnalyticsLinkOptions{}
}
return provider.DisconnectLink(opts)
})
}
// GetPendingMutationsAnalyticsOptions is the set of options available to the user manager GetPendingMutations operation.
type GetPendingMutationsAnalyticsOptions struct {
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
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]map[string]int, error) {
return autoOpControl(am.controller, "manager_analytics_get_pending_mutations", func(provider analyticsIndexProvider) (map[string]map[string]int, error) {
if opts == nil {
opts = &GetPendingMutationsAnalyticsOptions{}
}
return provider.GetPendingMutations(opts)
})
}
// AnalyticsLink describes an external or remote analytics link, used to access data external to the cluster.
type AnalyticsLink interface {
// Name returns the name of this link.
Name() string
// DataverseName returns the name of the dataverse that this link belongs to.
DataverseName() string
// FormEncode encodes the link into a form data representation, to be sent as the body of a CreateLink or ReplaceLink
// request.
FormEncode() ([]byte, error)
// Validate is used by CreateLink and ReplaceLink to ensure that the link is valid.
Validate() error
// LinkType returns the type of analytics type this link is.
LinkType() AnalyticsLinkType
}
// NewCouchbaseRemoteAnalyticsLinkOptions are the options available when creating a new CouchbaseRemoteAnalyticsLink.
type NewCouchbaseRemoteAnalyticsLinkOptions struct {
Encryption CouchbaseRemoteAnalyticsEncryptionSettings
Username string
Password string
}
// NewCouchbaseRemoteAnalyticsLink creates a new CouchbaseRemoteAnalyticsLink.
// Scope is the analytics scope in the form of "bucket/scope".
func NewCouchbaseRemoteAnalyticsLink(linkName, hostname, dataverseName string,
opts *NewCouchbaseRemoteAnalyticsLinkOptions) *CouchbaseRemoteAnalyticsLink {
if opts == nil {
opts = &NewCouchbaseRemoteAnalyticsLinkOptions{}
}
return &CouchbaseRemoteAnalyticsLink{
Dataverse: dataverseName,
LinkName: linkName,
Hostname: hostname,
Encryption: opts.Encryption,
Username: opts.Username,
Password: opts.Password,
}
}
// NewS3ExternalAnalyticsLinkOptions are the options available when creating a new S3ExternalAnalyticsLink.
type NewS3ExternalAnalyticsLinkOptions struct {
SessionToken string
ServiceEndpoint string
}
// NewS3ExternalAnalyticsLink creates a new S3ExternalAnalyticsLink with the scope field populated.
// Scope is the analytics scope in the form of "bucket/scope".
func NewS3ExternalAnalyticsLink(linkName, dataverseName, accessKeyID, secretAccessKey, region string,
opts *NewS3ExternalAnalyticsLinkOptions) *S3ExternalAnalyticsLink {
if opts == nil {
opts = &NewS3ExternalAnalyticsLinkOptions{}
}
return &S3ExternalAnalyticsLink{
Dataverse: dataverseName,
LinkName: linkName,
AccessKeyID: accessKeyID,
SecretAccessKey: secretAccessKey,
SessionToken: opts.SessionToken,
Region: region,
ServiceEndpoint: opts.ServiceEndpoint,
}
}
// NewAzureBlobExternalAnalyticsLinkOptions are the options available when creating a new AzureBlobExternalAnalyticsLink.
// VOLATILE: This API is subject to change at any time.
type NewAzureBlobExternalAnalyticsLinkOptions struct {
ConnectionString string
AccountName string
AccountKey string
SharedAccessSignature string
BlobEndpoint string
EndpointSuffix string
}
// NewAzureBlobExternalAnalyticsLink creates a new AzureBlobExternalAnalyticsLink.
// VOLATILE: This API is subject to change at any time.
func NewAzureBlobExternalAnalyticsLink(linkName, dataverseName string,
opts *NewAzureBlobExternalAnalyticsLinkOptions) *AzureBlobExternalAnalyticsLink {
if opts == nil {
opts = &NewAzureBlobExternalAnalyticsLinkOptions{}
}
return &AzureBlobExternalAnalyticsLink{
Dataverse: dataverseName,
LinkName: linkName,
ConnectionString: opts.ConnectionString,
AccountName: opts.AccountName,
AccountKey: opts.AccountKey,
SharedAccessSignature: opts.SharedAccessSignature,
BlobEndpoint: opts.BlobEndpoint,
EndpointSuffix: opts.EndpointSuffix,
}
}
// CreateAnalyticsLinkOptions is the set of options available to the analytics manager CreateLink
// function.
type CreateAnalyticsLinkOptions struct {
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
}
// CreateLink creates an analytics link.
func (am *AnalyticsIndexManager) CreateLink(link AnalyticsLink, opts *CreateAnalyticsLinkOptions) error {
return autoOpControlErrorOnly(am.controller, "manager_analytics_create_link", func(provider analyticsIndexProvider) error {
if opts == nil {
opts = &CreateAnalyticsLinkOptions{}
}
return provider.CreateLink(link, opts)
})
}
// ReplaceAnalyticsLinkOptions is the set of options available to the analytics manager ReplaceLink
// function.
type ReplaceAnalyticsLinkOptions struct {
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
}
// ReplaceLink modifies an existing analytics link.
func (am *AnalyticsIndexManager) ReplaceLink(link AnalyticsLink, opts *ReplaceAnalyticsLinkOptions) error {
return autoOpControlErrorOnly(am.controller, "manager_analytics_replace_link", func(provider analyticsIndexProvider) error {
if opts == nil {
opts = &ReplaceAnalyticsLinkOptions{}
}
return provider.ReplaceLink(link, opts)
})
}
// DropAnalyticsLinkOptions is the set of options available to the analytics manager DropLink
// function.
type DropAnalyticsLinkOptions struct {
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
}
// DropLink removes an existing external analytics link from specified scope.
// dataverseName can be given in the form of "namepart" or "namepart1/namepart2".
// Only available against Couchbase Server 7.0+.
func (am *AnalyticsIndexManager) DropLink(linkName, dataverseName string, opts *DropAnalyticsLinkOptions) error {
return autoOpControlErrorOnly(am.controller, "manager_analytics_drop_link", func(provider analyticsIndexProvider) error {
if opts == nil {
opts = &DropAnalyticsLinkOptions{}
}
return provider.DropLink(linkName, dataverseName, opts)
})
}
// GetAnalyticsLinksOptions are the options available to the AnalyticsManager GetLinks function.
type GetAnalyticsLinksOptions struct {
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Dataverse restricts the results to a given dataverse, can be given in the form of "namepart" or "namepart1/namepart2".
Dataverse string
// LinkType restricts the results to the given link type.
LinkType AnalyticsLinkType
// Name restricts the results to the link with the specified name.
// If set then `Scope` must also be set.
Name string
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
}
// GetLinks retrieves all external or remote analytics links.
func (am *AnalyticsIndexManager) GetLinks(opts *GetAnalyticsLinksOptions) ([]AnalyticsLink, error) {
return autoOpControl(am.controller, "manager_analytics_get_all_links", func(provider analyticsIndexProvider) ([]AnalyticsLink, error) {
if opts == nil {
opts = &GetAnalyticsLinksOptions{}
}
if opts.Name != "" && opts.Dataverse == "" {
return nil, makeInvalidArgumentsError("when name is set then dataverse must also be set")
}
return provider.GetLinks(opts)
})
}