-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcollections.go
507 lines (413 loc) · 14 KB
/
collections.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
package rockset
import (
"context"
"errors"
"fmt"
"net/http"
"time"
rockerr "github.com/rockset/rockset-go-client/errors"
"github.com/rockset/rockset-go-client/openapi"
"github.com/rockset/rockset-go-client/option"
)
// GetCollection gets information about a collection.
func (rc *RockClient) GetCollection(ctx context.Context, workspace, name string) (openapi.Collection, error) {
var err error
var httpResp *http.Response
var resp *openapi.GetCollectionResponse
getReq := rc.CollectionsApi.GetCollection(ctx, workspace, name)
err = rc.Retry(ctx, func() error {
resp, httpResp, err = getReq.Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return openapi.Collection{}, err
}
return resp.GetData(), nil
}
// GetCollectionCommit determines if the collection includes data at or after the specified fence(s) for
// close read-after-write semantics.
func (rc *RockClient) GetCollectionCommit(ctx context.Context, workspace, name string,
offsets []string) (openapi.GetCollectionCommitData, error) {
var err error
var httpResp *http.Response
var resp *openapi.GetCollectionCommit
getReq := rc.CollectionsApi.GetCollectionOffsets(ctx, workspace, name)
err = rc.Retry(ctx, func() error {
resp, httpResp, err = getReq.Body(openapi.GetCollectionCommitRequest{Name: offsets}).Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return openapi.GetCollectionCommitData{}, err
}
return resp.GetData(), nil
}
// ListCollections lists all collections, or in a specific workspace is option.WithWorkspace() is used.
func (rc *RockClient) ListCollections(ctx context.Context,
options ...option.ListCollectionOption) ([]openapi.Collection, error) {
var err error
var httpResp *http.Response
opts := option.ListCollectionOptions{}
for _, o := range options {
o(&opts)
}
var resp *openapi.ListCollectionsResponse
if opts.Workspace == nil {
listReq := rc.CollectionsApi.ListCollections(ctx)
err = rc.Retry(ctx, func() error {
resp, httpResp, err = listReq.Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
} else {
listWsReq := rc.CollectionsApi.WorkspaceCollections(ctx, *opts.Workspace)
err = rc.Retry(ctx, func() error {
resp, httpResp, err = listWsReq.Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
}
if err != nil {
return nil, err
}
return resp.GetData(), nil
}
// DeleteCollection deletes a collection.
func (rc *RockClient) DeleteCollection(ctx context.Context, workspace, name string) error {
deleteReq := rc.CollectionsApi.DeleteCollection(ctx, workspace, name)
err := rc.Retry(ctx, func() error {
_, httpResp, err := deleteReq.Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
return err
}
// UpdateCollection updates a collection. Only the option.WithCollectionDescription and
// option.WithIngestTransformation can be used, and any other option will return an error.
func (rc *RockClient) UpdateCollection(ctx context.Context, workspace, name string,
options ...option.CollectionOption) (openapi.Collection, error) {
var err error
var httpResp *http.Response
var resp *openapi.GetCollectionResponse
// this reuses the CreateCollectionRequest to avoid having to create separate options for UpdateCollection
var r openapi.CreateCollectionRequest
for _, o := range options {
o(&r)
}
request := openapi.UpdateCollectionRequest{}
if r.Description != nil {
request.Description = r.Description
}
if r.FieldMappingQuery != nil {
request.FieldMappingQuery = r.FieldMappingQuery
}
var errs []error
if r.ClusteringKey != nil {
errs = append(errs, fmt.Errorf("unsupported update attribute: %s", "ClusteringKey"))
}
if r.EventTimeInfo != nil {
errs = append(errs, fmt.Errorf("unsupported update attribute: %s", "EventTimeInfo"))
}
if r.Name != nil {
errs = append(errs, fmt.Errorf("unsupported update attribute: %s", "Name"))
}
if r.RetentionSecs != nil {
errs = append(errs, fmt.Errorf("unsupported update attribute: %s", "RetentionSecs"))
}
if r.Sources != nil {
errs = append(errs, fmt.Errorf("unsupported update attribute: %s", "Sources"))
}
if r.StorageCompressionType != nil {
errs = append(errs, fmt.Errorf("unsupported update attribute: %s", "StorageCompressionType"))
}
if len(errs) > 0 {
return openapi.Collection{}, errors.Join(errs...)
}
updateReq := rc.CollectionsApi.UpdateCollection(ctx, workspace, name)
err = rc.Retry(ctx, func() error {
resp, httpResp, err = updateReq.Body(request).Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return openapi.Collection{}, err
}
return resp.GetData(), nil
}
// CreateCollection is used to create a collection from one or more sources:
// - DynamoDB (see CreateDynamoDBIntegration())
// - GCS (see CreateGCSIntegration())
// - Kafka (see CreateKafkaIntegration())
// - Kinesis (see CreateKinesisIntegration())
// - MongoDB (see CreateMongoDBIntegration())
// - S3 (see CreateS3Integration())
//
// It uses exponential backoff in case the API call is rate-limted.
//
// To create a collection from multiple sources, use:
//
// c, err := rc.CreateCollection(ctx, "commons", "example",
// option.WithCollectionDescription("created by go example code"),
// option.WithS3Source("s3-integration-name", "rockset-go-tests",
// option.WithCSVFormat(
// []string{"city", "country", "population", "visited"},
// []option.ColumnType{
// option.ColumnTypeString, option.ColumnTypeString, option.ColumnTypeInteger, option.ColumnTypeBool,
// },
// option.WithEncoding("UTF-8"),
// option.WithEscapeChar("\\"),
// option.WithQuoteChar(`"`),
// option.WithSeparator(","),
// ),
// option.WithS3Prefix("cities.csv"),
// ),
// option.WithKafkaSource("kafka-integration-name", "topic",
// option.KafkaStartingOffsetEarliest, option.WithJSONFormat(),
// option.WithKafkaSourceV3(),
// ),
// option.WithCollectionRetention(time.Hour),
// option.WithFieldMappingQuery("SELECT * FROM _input"),
// )
func (rc *RockClient) CreateCollection(ctx context.Context, workspace, name string,
options ...option.CollectionOption) (openapi.Collection, error) {
var err error
var httpResp *http.Response
var resp *openapi.CreateCollectionResponse
request := openapi.CreateCollectionRequest{}
request.Name = &name
for _, o := range options {
o(&request)
}
createReq := rc.CollectionsApi.CreateCollection(ctx, workspace)
err = rc.Retry(ctx, func() error {
resp, httpResp, err = createReq.Body(request).Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return openapi.Collection{}, err
}
return resp.GetData(), nil
}
// CreateS3Collection creates an S3 collection from an existing S3 integration.
// Not specifying a format will default to JSON.
// Deprecated: use CreateCollection() with option.WithS3Source() instead.
func (rc *RockClient) CreateS3Collection(ctx context.Context,
workspace, name, description, integration, bucket, pattern string,
format option.Format, options ...option.CollectionOption) (openapi.Collection, error) {
var s3opts []option.S3SourceOption
if pattern != "" {
s3opts = append(s3opts, option.WithS3Pattern(pattern))
}
opts := []option.CollectionOption{
option.WithS3Source(integration, bucket, format, s3opts...),
}
if description != "" {
opts = append(opts, option.WithCollectionDescription(description))
}
opts = append(opts, options...)
return rc.CreateCollection(ctx, workspace, name, opts...)
}
func (rc *RockClient) CreateKinesisCollection(ctx context.Context,
workspace, name, description, integration, region, stream string,
format option.Format, options ...option.CollectionOption) (openapi.Collection, error) {
var err error
var httpResp *http.Response
var resp *openapi.CreateCollectionResponse
createReq := rc.CollectionsApi.CreateCollection(ctx, workspace)
createParams := openapi.NewCreateCollectionRequest()
createParams.Name = &name
createParams.Description = &description
f := openapi.FormatParams{}
format(&f)
createParams.Sources = []openapi.Source{
{
IntegrationName: &integration,
Kinesis: &openapi.SourceKinesis{
StreamName: stream,
AwsRegion: ®ion,
},
FormatParams: &f,
},
}
for _, o := range options {
o(createParams)
}
err = rc.Retry(ctx, func() error {
resp, httpResp, err = createReq.Body(*createParams).Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return openapi.Collection{}, err
}
return resp.GetData(), nil
}
func (rc *RockClient) CreateGCSCollection(ctx context.Context,
workspace, name, description, integration, bucket, prefix string,
format option.Format, options ...option.CollectionOption) (openapi.Collection, error) {
var err error
var httpResp *http.Response
var resp *openapi.CreateCollectionResponse
createReq := rc.CollectionsApi.CreateCollection(ctx, workspace)
createParams := openapi.NewCreateCollectionRequest()
createParams.Name = &name
createParams.Description = &description
f := openapi.FormatParams{}
format(&f)
createParams.Sources = []openapi.Source{
{
IntegrationName: &integration,
Gcs: &openapi.SourceGcs{
Bucket: &bucket,
Prefix: &prefix,
},
FormatParams: &f,
},
}
for _, o := range options {
o(createParams)
}
err = rc.Retry(ctx, func() error {
resp, httpResp, err = createReq.Body(*createParams).Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return openapi.Collection{}, err
}
return resp.GetData(), nil
}
func (rc *RockClient) CreateDynamoDBCollection(ctx context.Context,
workspace, name, description, integration, region, tableName string, maxRCU int64,
format option.Format, options ...option.CollectionOption) (openapi.Collection, error) {
var err error
var httpResp *http.Response
var resp *openapi.CreateCollectionResponse
createReq := rc.CollectionsApi.CreateCollection(ctx, workspace)
createParams := openapi.NewCreateCollectionRequest()
createParams.Name = &name
createParams.Description = &description
f := openapi.FormatParams{}
format(&f)
createParams.Sources = []openapi.Source{
{
IntegrationName: &integration,
Dynamodb: &openapi.SourceDynamoDb{
AwsRegion: ®ion,
TableName: tableName,
},
FormatParams: &f,
},
}
for _, o := range options {
o(createParams)
}
err = rc.Retry(ctx, func() error {
resp, httpResp, err = createReq.Body(*createParams).Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return openapi.Collection{}, err
}
return resp.GetData(), nil
}
func (rc *RockClient) CreateFileUploadCollection(ctx context.Context,
workspace, name, description, fileName string, fileSize int64,
fileUploadTime time.Time,
format option.Format, options ...option.CollectionOption) (openapi.Collection, error) {
var err error
var httpResp *http.Response
var resp *openapi.CreateCollectionResponse
createReq := rc.CollectionsApi.CreateCollection(ctx, workspace)
createParams := openapi.NewCreateCollectionRequest()
createParams.Name = &name
createParams.Description = &description
f := openapi.FormatParams{}
format(&f)
createParams.Sources = []openapi.Source{
{
FileUpload: &openapi.SourceFileUpload{
// TODO how do you send the actual file contents?!?!
FileName: fileName,
FileSize: fileSize,
FileUploadTime: fileUploadTime.Format(time.RFC3339),
},
FormatParams: &f,
},
}
for _, o := range options {
o(createParams)
}
err = rc.Retry(ctx, func() error {
resp, httpResp, err = createReq.Body(*createParams).Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return openapi.Collection{}, err
}
return resp.GetData(), nil
}
// CreateKafkaCollection creates a single collection from a Kafka integration. Requires using
// option.WithKafkaSource() to configure the Kafka source options.
//
// rc, err := rockset.NewClient()
// if err != nil { ... }
//
// c, err := rc.CreateKafkaCollection(ctx, "workspace", "collection",
// option.WithCollectionRetention(time.Hour),
// option.WithKafkaSource("integration-name", "topic", option.KafkaStartingOffsetEarliest,
// option.WithJSONFormat(),
// ))
//
// if err != nil { ... }
// if err = rc.WaitUntilCollectionReady(ctx, "workspace", "collection"); err != nil {
// ...
// }
func (rc *RockClient) CreateKafkaCollection(ctx context.Context, workspace, name string,
options ...option.CollectionOption) (openapi.Collection, error) {
var err error
var httpResp *http.Response
var resp *openapi.CreateCollectionResponse
createReq := rc.CollectionsApi.CreateCollection(ctx, workspace)
createParams := openapi.NewCreateCollectionRequest()
createParams.Name = &name
createParams.Sources = []openapi.Source{}
for _, o := range options {
o(createParams)
}
err = rc.Retry(ctx, func() error {
resp, httpResp, err = createReq.Body(*createParams).Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return openapi.Collection{}, err
}
return resp.GetData(), nil
}
func (rc *RockClient) CreateMongoDBCollection(ctx context.Context,
workspace, name, description, integration, database, collection string,
format option.Format, options ...option.CollectionOption) (openapi.Collection, error) {
var err error
var httpResp *http.Response
var resp *openapi.CreateCollectionResponse
createReq := rc.CollectionsApi.CreateCollection(ctx, workspace)
createParams := openapi.NewCreateCollectionRequest()
createParams.Name = &name
createParams.Description = &description
f := openapi.FormatParams{}
format(&f)
createParams.Sources = []openapi.Source{
{
IntegrationName: &integration,
Mongodb: &openapi.SourceMongoDb{
DatabaseName: database,
CollectionName: collection,
},
FormatParams: &f,
},
}
for _, o := range options {
o(createParams)
}
err = rc.Retry(ctx, func() error {
resp, httpResp, err = createReq.Body(*createParams).Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return openapi.Collection{}, err
}
return resp.GetData(), nil
}