forked from guregu/dynamo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbatchget.go
390 lines (349 loc) · 9.87 KB
/
batchget.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
package dynamo
import (
"fmt"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/dynamodb"
"github.com/cenkalti/backoff"
)
// DynamoDB API limit, 100 operations per request
const maxGetOps = 100
// Batch stores the names of the hash key and range key
// for creating new batches.
type Batch struct {
table Table
hashKey, rangeKey string
err error
}
// Batch creates a new batch with the given hash key name, and range key name if provided.
// For purely Put batches, neither is necessary.
func (table Table) Batch(hashAndRangeKeyName ...string) Batch {
b := Batch{
table: table,
}
switch len(hashAndRangeKeyName) {
case 0:
case 1:
b.hashKey = hashAndRangeKeyName[0]
case 2:
b.hashKey = hashAndRangeKeyName[0]
b.rangeKey = hashAndRangeKeyName[1]
default:
b.err = fmt.Errorf("dynamo: batch: you may only provide the name of a range key and hash key. too many keys.")
}
return b
}
// BatchGet is a BatchGetItem operation.
type BatchGet struct {
batch Batch
reqs []*Query
projection string
consistent bool
err error
cc *ConsumedCapacity
}
// Get creates a new batch get item request with the given keys.
// table.Batch("ID", "Month").
// Get([]dynamo.Keys{{1, "2015-10"}, {42, "2015-12"}, {42, "1992-02"}}...).
// All(&results)
func (b Batch) Get(keys ...Keyed) *BatchGet {
bg := &BatchGet{
batch: b,
err: b.err,
}
bg.add(keys)
return bg
}
// And adds more keys to be gotten.
func (bg *BatchGet) And(keys ...Keyed) *BatchGet {
bg.add(keys)
return bg
}
func (bg *BatchGet) add(keys []Keyed) {
for _, key := range keys {
get := bg.batch.table.Get(bg.batch.hashKey, key.HashKey())
if rk := key.RangeKey(); bg.batch.rangeKey != "" && rk != nil {
get.Range(bg.batch.rangeKey, Equal, rk)
bg.setError(get.err)
}
bg.reqs = append(bg.reqs, get)
}
}
// Consistent will, if on is true, make this batch use a strongly consistent read.
// Reads are eventually consistent by default.
// Strongly consistent reads are more resource-heavy than eventually consistent reads.
func (bg *BatchGet) Consistent(on bool) *BatchGet {
bg.consistent = on
return bg
}
// ConsumedCapacity will measure the throughput capacity consumed by this operation and add it to cc.
func (bg *BatchGet) ConsumedCapacity(cc *ConsumedCapacity) *BatchGet {
bg.cc = cc
return bg
}
// All executes this request and unmarshals all results to out, which must be a pointer to a slice.
func (bg *BatchGet) All(out interface{}) error {
iter := newBGIter(bg, unmarshalAppend, bg.err)
for iter.Next(out) {
}
return iter.Err()
}
func (bg *BatchGet) AllItems() ([]map[string]*dynamodb.AttributeValue, error) {
iter := newBGItemIter(bg, bg.err)
results := []map[string]*dynamodb.AttributeValue{}
for item, hasNext := iter.NextItem(); hasNext; item, hasNext = iter.NextItem() {
results = append(results, item)
}
return results, iter.Err()
}
// AllWithContext executes this request and unmarshals all results to out, which must be a pointer to a slice.
func (bg *BatchGet) AllWithContext(ctx aws.Context, out interface{}) error {
iter := newBGIter(bg, unmarshalAppend, bg.err)
for iter.NextWithContext(ctx, out) {
}
return iter.Err()
}
// Iter returns a results iterator for this batch.
func (bg *BatchGet) Iter() Iter {
return newBGIter(bg, unmarshalItem, bg.err)
}
func (bg *BatchGet) input(start int) *dynamodb.BatchGetItemInput {
if start >= len(bg.reqs) {
return nil // done
}
end := start + maxGetOps
if end > len(bg.reqs) {
end = len(bg.reqs)
}
in := &dynamodb.BatchGetItemInput{
RequestItems: make(map[string]*dynamodb.KeysAndAttributes, 1),
}
if bg.projection != "" {
for _, get := range bg.reqs[start:end] {
get.Project(get.projection)
bg.setError(get.err)
}
}
if bg.cc != nil {
in.ReturnConsumedCapacity = aws.String(dynamodb.ReturnConsumedCapacityIndexes)
}
var kas *dynamodb.KeysAndAttributes
for _, get := range bg.reqs[start:end] {
if kas == nil {
kas = get.keysAndAttribs()
continue
}
kas.Keys = append(kas.Keys, get.keys())
}
if bg.projection != "" {
kas.ProjectionExpression = &bg.projection
}
if bg.consistent {
kas.ConsistentRead = &bg.consistent
}
in.RequestItems[bg.batch.table.Name()] = kas
return in
}
func (bg *BatchGet) setError(err error) {
if bg.err == nil {
bg.err = err
}
}
// bgIter is the iterator for Batch Get operations
type bgIter struct {
bg *BatchGet
input *dynamodb.BatchGetItemInput
output *dynamodb.BatchGetItemOutput
err error
idx int
total int
processed int
backoff *backoff.ExponentialBackOff
unmarshal unmarshalFunc
}
func newBGIter(bg *BatchGet, fn unmarshalFunc, err error) *bgIter {
iter := &bgIter{
bg: bg,
err: err,
backoff: backoff.NewExponentialBackOff(),
unmarshal: fn,
}
iter.backoff.MaxElapsedTime = 0
return iter
}
func newBGItemIter(bg *BatchGet, err error) *bgIter {
iter := &bgIter{
bg: bg,
err: err,
backoff: backoff.NewExponentialBackOff(),
}
iter.backoff.MaxElapsedTime = 0
return iter
}
// Next tries to unmarshal the next result into out.
// Returns false when it is complete or if it runs into an error.
func (itr *bgIter) Next(out interface{}) bool {
ctx, cancel := defaultContext()
defer cancel()
return itr.NextWithContext(ctx, out)
}
func (itr *bgIter) NextWithContext(ctx aws.Context, out interface{}) bool {
// stop if we have an error
if itr.err != nil {
return false
}
tableName := itr.bg.batch.table.Name()
// can we use results we already have?
if itr.output != nil && itr.idx < len(itr.output.Responses[tableName]) {
items := itr.output.Responses[tableName]
item := items[itr.idx]
itr.err = itr.unmarshal(item, out)
itr.idx++
itr.total++
return itr.err == nil
}
// new bg
if itr.input == nil {
itr.input = itr.bg.input(itr.processed)
}
if itr.output != nil && itr.idx >= len(itr.output.Responses[tableName]) {
var unprocessed int
if itr.output.UnprocessedKeys != nil && itr.output.UnprocessedKeys[tableName] != nil {
unprocessed = len(itr.output.UnprocessedKeys[tableName].Keys)
}
itr.processed += len(itr.input.RequestItems[tableName].Keys) - unprocessed
// have we exhausted all results?
if len(itr.output.UnprocessedKeys) == 0 {
// yes, try to get next inner batch of 100 items
if itr.input = itr.bg.input(itr.processed); itr.input == nil {
// we're done, no more input
if itr.err == nil && itr.total == 0 {
itr.err = ErrNotFound
}
return false
}
} else {
// no, prepare a new request with the remaining keys
itr.input.RequestItems = itr.output.UnprocessedKeys
// we need to sleep here a bit as per the official docs
if err := aws.SleepWithContext(ctx, itr.backoff.NextBackOff()); err != nil {
// timed out
itr.err = err
return false
}
}
itr.idx = 0
}
itr.err = retry(ctx, func() error {
var err error
itr.output, err = itr.bg.batch.table.db.client.BatchGetItemWithContext(ctx, itr.input)
return err
})
if itr.err != nil {
return false
}
if itr.bg.cc != nil {
for _, cc := range itr.output.ConsumedCapacity {
addConsumedCapacity(itr.bg.cc, cc)
}
}
items := itr.output.Responses[tableName]
if len(items) == 0 {
if len(itr.output.UnprocessedKeys) == 0 {
if itr.total == 0 {
itr.err = ErrNotFound
}
return false
}
// need to retry to get more keys
return itr.NextWithContext(ctx, out)
}
itr.err = itr.unmarshal(items[itr.idx], out)
itr.idx++
itr.total++
return itr.err == nil
}
func (itr *bgIter) NextItem() (map[string]*dynamodb.AttributeValue, bool) {
ctx, cancel := defaultContext()
defer cancel()
return itr.NextItemWithContext(ctx)
}
func (itr *bgIter) NextItemWithContext(ctx aws.Context) (map[string]*dynamodb.AttributeValue, bool) {
// stop if we have an error
if itr.err != nil {
return nil, false
}
tableName := itr.bg.batch.table.Name()
// can we use results we already have?
if itr.output != nil && itr.idx < len(itr.output.Responses[tableName]) {
items := itr.output.Responses[tableName]
item := items[itr.idx]
itr.idx++
itr.total++
return item, itr.err == nil
}
// new bg
if itr.input == nil {
itr.input = itr.bg.input(itr.processed)
}
if itr.output != nil && itr.idx >= len(itr.output.Responses[tableName]) {
var unprocessed int
if itr.output.UnprocessedKeys != nil && itr.output.UnprocessedKeys[tableName] != nil {
unprocessed = len(itr.output.UnprocessedKeys[tableName].Keys)
}
itr.processed += len(itr.input.RequestItems[tableName].Keys) - unprocessed
// have we exhausted all results?
if len(itr.output.UnprocessedKeys) == 0 {
// yes, try to get next inner batch of 100 items
if itr.input = itr.bg.input(itr.processed); itr.input == nil {
// we're done, no more input
if itr.err == nil && itr.total == 0 {
itr.err = ErrNotFound
}
return nil, false
}
} else {
// no, prepare a new request with the remaining keys
itr.input.RequestItems = itr.output.UnprocessedKeys
// we need to sleep here a bit as per the official docs
if err := aws.SleepWithContext(ctx, itr.backoff.NextBackOff()); err != nil {
// timed out
itr.err = err
return nil, false
}
}
itr.idx = 0
}
itr.err = retry(ctx, func() error {
var err error
itr.output, err = itr.bg.batch.table.db.client.BatchGetItemWithContext(ctx, itr.input)
return err
})
if itr.err != nil {
return nil, false
}
if itr.bg.cc != nil {
for _, cc := range itr.output.ConsumedCapacity {
addConsumedCapacity(itr.bg.cc, cc)
}
}
items := itr.output.Responses[tableName]
if len(items) == 0 {
if len(itr.output.UnprocessedKeys) == 0 {
if itr.total == 0 {
itr.err = ErrNotFound
}
return nil, false
}
// need to retry to get more keys
return itr.NextItemWithContext(ctx)
}
item := items[itr.idx]
itr.idx++
itr.total++
return item, itr.err == nil
}
// Err returns the error encountered, if any.
// You should check this after Next is finished.
func (itr *bgIter) Err() error {
return itr.err
}