-
Notifications
You must be signed in to change notification settings - Fork 9
/
virtual_instances.go
356 lines (276 loc) · 9.55 KB
/
virtual_instances.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
package rockset
import (
"context"
"net/http"
"github.com/rs/zerolog"
rockerr "github.com/rockset/rockset-go-client/errors"
"github.com/rockset/rockset-go-client/openapi"
"github.com/rockset/rockset-go-client/option"
)
// CreateVirtualInstance creates a new virtual instance.
// Note that not supplying option.WithMountRefreshInterval() or option.WithContinuousMountRefresh() will
// create a virtual instance that will never refresh the mounts.
//
// REST API documentation https://rockset.com/docs/rest-api/#createvirtualinstance
func (rc *RockClient) CreateVirtualInstance(ctx context.Context, name string,
options ...option.VirtualInstanceOption) (openapi.VirtualInstance, error) {
var err error
var httpResp *http.Response
var resp *openapi.CreateVirtualInstanceResponse
opts := option.VirtualInstanceOptions{}
for _, o := range options {
o(&opts)
}
zl := zerolog.Ctx(ctx)
req := openapi.CreateVirtualInstanceRequest{Name: name}
if opts.Description != nil {
req.Description = opts.Description
}
if opts.Size != nil {
req.Type = opts.Size
}
if opts.AutoSuspend != nil {
s := int32(opts.AutoSuspend.Seconds())
zl.Info().Int32("s", s).Dur("d", *opts.AutoSuspend).Msg("auto suspend")
req.AutoSuspendSeconds = &s
}
if opts.EnableRemountOnResume != nil {
req.EnableRemountOnResume = opts.EnableRemountOnResume
}
q := rc.VirtualInstancesApi.CreateVirtualInstance(ctx)
err = rc.Retry(ctx, func() error {
resp, httpResp, err = q.Body(req).Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return openapi.VirtualInstance{}, err
}
return resp.GetData(), nil
}
// DeleteVirtualInstance deletes a virtual instance.
//
// REST API documentation https://rockset.com/docs/rest-api/#deletevirtualinstance
func (rc *RockClient) DeleteVirtualInstance(ctx context.Context, vID string) (openapi.VirtualInstance, error) {
var err error
var httpResp *http.Response
var resp *openapi.DeleteVirtualInstanceResponse
q := rc.VirtualInstancesApi.DeleteVirtualInstance(ctx, vID)
err = rc.Retry(ctx, func() error {
resp, httpResp, err = q.Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return openapi.VirtualInstance{}, err
}
return resp.GetData(), nil
}
// GetVirtualInstance gets a virtual instance by the virtual instance uuid.
//
// REST API documentation https://docs.rockset.com/rest-api/#getvirtualinstance
func (rc *RockClient) GetVirtualInstance(ctx context.Context, vID string) (openapi.VirtualInstance, error) {
var err error
var httpResp *http.Response
var resp *openapi.GetVirtualInstanceResponse
q := rc.VirtualInstancesApi.GetVirtualInstance(ctx, vID)
err = rc.Retry(ctx, func() error {
resp, httpResp, err = q.Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return openapi.VirtualInstance{}, err
}
return resp.GetData(), nil
}
// ListVirtualInstances lists all virtual instances.
//
// REST API documentation https://docs.rockset.com/rest-api/#listvirtualinstances
func (rc *RockClient) ListVirtualInstances(ctx context.Context) ([]openapi.VirtualInstance, error) {
var err error
var httpResp *http.Response
var resp *openapi.ListVirtualInstancesResponse
q := rc.VirtualInstancesApi.ListVirtualInstances(ctx)
err = rc.Retry(ctx, func() error {
resp, httpResp, err = q.Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return nil, err
}
return resp.GetData(), nil
}
// UpdateVirtualInstance updates the properties of a virtual instance.
//
// REST API documentation https://docs.rockset.com/rest-api/#setvirtualinstance
func (rc *RockClient) UpdateVirtualInstance(ctx context.Context, vID string,
options ...option.VirtualInstanceOption) (openapi.VirtualInstance, error) {
var err error
var httpResp *http.Response
var resp *openapi.UpdateVirtualInstanceResponse
opts := option.VirtualInstanceOptions{}
for _, o := range options {
o(&opts)
}
q := rc.VirtualInstancesApi.SetVirtualInstance(ctx, vID)
req := openapi.NewUpdateVirtualInstanceRequest()
if opts.Name != nil {
req.Name = opts.Name
}
if opts.Description != nil {
req.Description = opts.Description
}
if opts.Size != nil {
req.NewSize = opts.Size
}
if opts.AutoSuspend != nil {
s := int32(opts.AutoSuspend.Seconds())
req.AutoSuspendSeconds = &s
}
if opts.EnableRemountOnResume != nil {
req.EnableRemountOnResume = opts.EnableRemountOnResume
}
if opts.AutoScalingPolicy != nil {
req.AutoScalingPolicy = opts.AutoScalingPolicy
}
err = rc.Retry(ctx, func() error {
resp, httpResp, err = q.Body(*req).Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return openapi.VirtualInstance{}, err
}
return resp.GetData(), nil
}
// SuspendVirtualInstance suspends a virtual instance.
//
// REST API documentation https://docs.rockset.com/rest-api/#suspendvirtualinstance
func (rc *RockClient) SuspendVirtualInstance(ctx context.Context, vID string) (openapi.VirtualInstance, error) {
var err error
var httpResp *http.Response
var resp *openapi.SuspendVirtualInstanceResponse
q := rc.VirtualInstancesApi.SuspendVirtualInstance(ctx, vID)
err = rc.Retry(ctx, func() error {
resp, httpResp, err = q.Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return openapi.VirtualInstance{}, err
}
return resp.GetData(), nil
}
// ResumeVirtualInstance resumes a virtual instance.
//
// REST API documentation https://docs.rockset.com/rest-api/#resumevirtualinstance
func (rc *RockClient) ResumeVirtualInstance(ctx context.Context, vID string) (openapi.VirtualInstance, error) {
var err error
var httpResp *http.Response
var resp *openapi.ResumeVirtualInstanceResponse
q := rc.VirtualInstancesApi.ResumeVirtualInstance(ctx, vID)
err = rc.Retry(ctx, func() error {
resp, httpResp, err = q.Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return openapi.VirtualInstance{}, err
}
return resp.GetData(), nil
}
// ExecuteQueryOnVirtualInstance executes the SQL query on a specific virtual instance instead of the main
// virtual instance.
//
// REST API documentation https://rockset.com/docs/rest-api/#queryvirtualinstance
func (rc *RockClient) ExecuteQueryOnVirtualInstance(ctx context.Context, vID string, sql string,
options ...option.QueryOption) (openapi.QueryResponse, error) {
return queryWrapper(ctx, rc, vID, sql, options...)
}
// ListVirtualInstanceQueries lists actively queued and running queries for a particular Virtual Instance.
//
// REST API documentation
func (rc *RockClient) ListVirtualInstanceQueries(ctx context.Context, vID string) ([]openapi.QueryInfo, error) {
var err error
var httpResp *http.Response
var resp *openapi.ListQueriesResponse
q := rc.VirtualInstancesApi.GetVirtualInstanceQueries(ctx, vID)
err = rc.Retry(ctx, func() error {
resp, httpResp, err = q.Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return nil, err
}
return resp.Data, nil
}
// ListCollectionMounts lists collection mounts for a particular virtual instance.
//
// REST API documentation https://rockset.com/docs/rest-api/#listcollectionmounts
func (rc *RockClient) ListCollectionMounts(ctx context.Context, vID string) ([]openapi.CollectionMount, error) {
var err error
var httpResp *http.Response
var resp *openapi.ListCollectionMountsResponse
q := rc.VirtualInstancesApi.ListCollectionMounts(ctx, vID)
err = rc.Retry(ctx, func() error {
resp, httpResp, err = q.Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return nil, err
}
return resp.Data, nil
}
// GetCollectionMount gets a mount on this virtual instance.
//
// REST API documentation https://rockset.com/docs/rest-api/#getcollectionmount
func (rc *RockClient) GetCollectionMount(ctx context.Context, vID,
collectionPath string) (openapi.CollectionMount, error) {
var err error
var httpResp *http.Response
var resp *openapi.CollectionMountResponse
q := rc.VirtualInstancesApi.GetCollectionMount(ctx, vID, collectionPath)
err = rc.Retry(ctx, func() error {
resp, httpResp, err = q.Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return openapi.CollectionMount{}, err
}
return *resp.Data, nil
}
// MountCollections mounts collections on a virtual instance, where the collections are listed as
// workspace.collection.
//
// REST API documentation https://rockset.com/docs/rest-api/#mountcollection
func (rc *RockClient) MountCollections(ctx context.Context, vID string,
collectionPaths []string) ([]openapi.CollectionMount, error) {
var err error
var httpResp *http.Response
var resp *openapi.CreateCollectionMountsResponse
q := rc.VirtualInstancesApi.MountCollection(ctx, vID)
req := openapi.CreateCollectionMountRequest{
CollectionPaths: collectionPaths,
}
err = rc.Retry(ctx, func() error {
resp, httpResp, err = q.Body(req).Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return nil, err
}
return resp.Data, nil
}
// UnmountCollection unmount a collection from a virtual instance.
//
// REST API documentation https://rockset.com/docs/rest-api/#unmountcollection
func (rc *RockClient) UnmountCollection(ctx context.Context, vID string,
collectionPath string) (openapi.CollectionMount, error) {
var err error
var httpResp *http.Response
var resp *openapi.CollectionMountResponse
q := rc.VirtualInstancesApi.UnmountCollection(ctx, vID, collectionPath)
err = rc.Retry(ctx, func() error {
resp, httpResp, err = q.Execute()
return rockerr.NewWithStatusCode(err, httpResp)
})
if err != nil {
return openapi.CollectionMount{}, err
}
return *resp.Data, nil
}