-
Notifications
You must be signed in to change notification settings - Fork 199
/
batch_command_operate.go
303 lines (257 loc) · 8.8 KB
/
batch_command_operate.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
// Copyright 2014-2022 Aerospike, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package aerospike
import (
"reflect"
"github.com/aerospike/aerospike-client-go/v7/types"
Buffer "github.com/aerospike/aerospike-client-go/v7/utils/buffer"
)
type batchCommandOperate struct {
batchCommand
attr *batchAttr
records []BatchRecordIfc
// pointer to the object that's going to be unmarshalled
objects []*reflect.Value
objectsFound []bool
}
func newBatchCommandOperate(
client clientIfc,
batch *batchNode,
policy *BatchPolicy,
records []BatchRecordIfc,
) *batchCommandOperate {
var node *Node
if batch != nil {
node = batch.Node
}
res := &batchCommandOperate{
batchCommand: batchCommand{
client: client,
baseMultiCommand: *newMultiCommand(node, nil, true),
policy: policy,
batch: batch,
},
records: records,
}
return res
}
func (cmd *batchCommandOperate) buf() []byte {
return cmd.dataBuffer
}
func (cmd *batchCommandOperate) object(index int) *reflect.Value {
return cmd.objects[index]
}
func (cmd *batchCommandOperate) cloneBatchCommand(batch *batchNode) batcher {
res := *cmd
res.node = batch.Node
res.batch = batch
return &res
}
func (cmd *batchCommandOperate) writeBuffer(ifc command) Error {
attr, err := cmd.setBatchOperateIfc(cmd.client, cmd.policy, cmd.records, cmd.batch)
cmd.attr = attr
return err
}
func (cmd *batchCommandOperate) isRead() bool {
return cmd.attr != nil && !cmd.attr.hasWrite
}
// Parse all results in the batch. Add records to shared list.
// If the record was not found, the bins will be nil.
func (cmd *batchCommandOperate) parseRecordResults(ifc command, receiveSize int) (bool, Error) {
//Parse each message response and add it to the result array
cmd.dataOffset = 0
for cmd.dataOffset < receiveSize {
if err := cmd.readBytes(int(_MSG_REMAINING_HEADER_SIZE)); err != nil {
return false, err
}
resultCode := types.ResultCode(cmd.dataBuffer[5] & 0xFF)
info3 := int(cmd.dataBuffer[3])
// If cmd is the end marker of the response, do not proceed further
if resultCode == 0 && (info3&_INFO3_LAST) == _INFO3_LAST {
return false, nil
}
generation := Buffer.BytesToUint32(cmd.dataBuffer, 6)
expiration := types.TTL(Buffer.BytesToUint32(cmd.dataBuffer, 10))
batchIndex := int(Buffer.BytesToUint32(cmd.dataBuffer, 14))
fieldCount := int(Buffer.BytesToUint16(cmd.dataBuffer, 18))
opCount := int(Buffer.BytesToUint16(cmd.dataBuffer, 20))
err := cmd.skipKey(fieldCount)
if err != nil {
return false, err
}
if resultCode != 0 {
if resultCode == types.FILTERED_OUT {
cmd.filteredOutCnt++
}
// If it looks like the error is on the first record and the message is marked as last part,
// the error is for the whole command and not just for the first batchIndex
lastMessage := (info3&_INFO3_LAST) == _INFO3_LAST || cmd.grpcEOS
if resultCode != 0 && lastMessage && receiveSize == int(_MSG_REMAINING_HEADER_SIZE) {
return false, newError(resultCode).setNode(cmd.node)
}
if resultCode == types.UDF_BAD_RESPONSE {
rec, err := cmd.parseRecord(cmd.records[batchIndex].key(), opCount, generation, expiration)
if err != nil {
cmd.records[batchIndex].setError(cmd.node, resultCode, cmd.batchInDoubt(cmd.attr.hasWrite, cmd.commandSentCounter))
return false, err
}
// for UDF failures
var msg interface{}
if rec != nil {
msg = rec.Bins["FAILURE"]
}
// Need to store record because failure bin contains an error message.
cmd.records[batchIndex].setRecord(rec)
if msg, ok := msg.(string); ok && len(msg) > 0 {
cmd.records[batchIndex].setErrorWithMsg(cmd.node, resultCode, msg, cmd.batchInDoubt(cmd.attr.hasWrite, cmd.commandSentCounter))
} else {
cmd.records[batchIndex].setError(cmd.node, resultCode, cmd.batchInDoubt(cmd.attr.hasWrite, cmd.commandSentCounter))
}
// If cmd is the end marker of the response, do not proceed further
// if (info3 & _INFO3_LAST) == _INFO3_LAST {
if lastMessage {
return false, nil
}
continue
}
cmd.records[batchIndex].setError(cmd.node, resultCode, cmd.batchInDoubt(cmd.attr.hasWrite, cmd.commandSentCounter))
// If cmd is the end marker of the response, do not proceed further
if (info3 & _INFO3_LAST) == _INFO3_LAST {
return false, nil
}
continue
}
// Do not process records after grpc stream has ended.
// This is a special case due to proxy server shortcomings.
if resultCode == 0 && !cmd.grpcEOS {
if cmd.objects == nil {
rec, err := cmd.parseRecord(cmd.records[batchIndex].key(), opCount, generation, expiration)
if err != nil {
cmd.records[batchIndex].setError(cmd.node, resultCode, cmd.batchInDoubt(cmd.attr.hasWrite, cmd.commandSentCounter))
return false, err
}
cmd.records[batchIndex].setRecord(rec)
} else if batchObjectParser != nil {
// mark it as found
cmd.objectsFound[batchIndex] = true
if err := batchObjectParser(cmd, batchIndex, opCount, fieldCount, generation, expiration); err != nil {
return false, err
}
}
}
}
return true, nil
}
// Parses the given byte buffer and populate the result object.
// Returns the number of bytes that were parsed from the given buffer.
func (cmd *batchCommandOperate) parseRecord(key *Key, opCount int, generation, expiration uint32) (*Record, Error) {
bins := make(BinMap, opCount)
for i := 0; i < opCount; i++ {
if err := cmd.readBytes(8); err != nil {
return nil, err
}
opSize := int(Buffer.BytesToUint32(cmd.dataBuffer, 0))
particleType := int(cmd.dataBuffer[5])
nameSize := int(cmd.dataBuffer[7])
if err := cmd.readBytes(nameSize); err != nil {
return nil, err
}
name := string(cmd.dataBuffer[:nameSize])
particleBytesSize := opSize - (4 + nameSize)
if err := cmd.readBytes(particleBytesSize); err != nil {
return nil, err
}
value, err := bytesToParticle(particleType, cmd.dataBuffer, 0, particleBytesSize)
if err != nil {
return nil, err
}
if cmd.isOperation {
if prev, ok := bins[name]; ok {
if prev2, ok := prev.(OpResults); ok {
bins[name] = append(prev2, value)
} else {
bins[name] = OpResults{prev, value}
}
} else {
bins[name] = value
}
} else {
bins[name] = value
}
}
return newRecord(cmd.node, key, bins, generation, expiration), nil
}
func (cmd *batchCommandOperate) executeSingle(client clientIfc) Error {
var res *Record
var err Error
for _, br := range cmd.records {
switch br := br.(type) {
case *BatchRead:
ops := br.Ops
if br.headerOnly() {
ops = append(ops, GetHeaderOp())
} else if len(br.BinNames) > 0 {
for i := range br.BinNames {
ops = append(ops, GetBinOp(br.BinNames[i]))
}
} else if len(ops) == 0 {
ops = append(ops, GetOp())
}
res, err = client.operate(cmd.client.getUsableBatchReadPolicy(br.Policy).toWritePolicy(cmd.policy), br.Key, true, ops...)
case *BatchWrite:
policy := cmd.client.getUsableBatchWritePolicy(br.Policy).toWritePolicy(cmd.policy)
policy.RespondPerEachOp = true
res, err = client.operate(policy, br.Key, true, br.Ops...)
case *BatchDelete:
policy := cmd.client.getUsableBatchDeletePolicy(br.Policy).toWritePolicy(cmd.policy)
res, err = client.operate(policy, br.Key, true, DeleteOp())
case *BatchUDF:
policy := cmd.client.getUsableBatchUDFPolicy(br.Policy).toWritePolicy(cmd.policy)
policy.RespondPerEachOp = true
res, err = client.execute(policy, br.Key, br.PackageName, br.FunctionName, br.FunctionArgs...)
}
br.setRecord(res)
if err != nil {
br.BatchRec().setRawError(err)
// Key not found is NOT an error for batch requests
if err.resultCode() == types.KEY_NOT_FOUND_ERROR {
continue
}
if err.resultCode() == types.FILTERED_OUT {
cmd.filteredOutCnt++
continue
}
if cmd.policy.AllowPartialResults {
continue
}
return err
}
}
return nil
}
func (cmd *batchCommandOperate) Execute() Error {
if cmd.objects == nil && len(cmd.records) == 1 {
return cmd.executeSingle(cmd.client)
}
return cmd.execute(cmd)
}
func (cmd *batchCommandOperate) transactionType() transactionType {
if cmd.isRead() {
return ttBatchRead
}
return ttBatchWrite
}
func (cmd *batchCommandOperate) generateBatchNodes(cluster *Cluster) ([]*batchNode, Error) {
return newBatchOperateNodeListIfcRetry(cluster, cmd.policy, cmd.records, cmd.sequenceAP, cmd.sequenceSC, cmd.batch)
}