-
Notifications
You must be signed in to change notification settings - Fork 213
Expand file tree
/
Copy pathbatch_index_command_get.go
More file actions
276 lines (234 loc) · 7.91 KB
/
Copy pathbatch_index_command_get.go
File metadata and controls
276 lines (234 loc) · 7.91 KB
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
// 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 (
"iter"
"github.com/aerospike/aerospike-client-go/v8/types"
Buffer "github.com/aerospike/aerospike-client-go/v8/utils/buffer"
)
type batchIndexCommandGet struct {
batchCommandOperate
records []*BatchRead
}
func newBatchIndexCommandGet(
client *Client,
batch *batchNode,
policy *BatchPolicy,
records []*BatchRead,
isOperation bool,
) batchIndexCommandGet {
res := batchIndexCommandGet{
batchCommandOperate: newBatchCommandOperate(client, batch, policy, nil),
records: records,
}
res.txn = policy.Txn
return res
}
func (cmd *batchIndexCommandGet) writeBuffer(ifc command) Error {
attr, err := cmd.setBatchOperateRead(cmd.client, cmd.policy, cmd.records, cmd.batch)
cmd.attr = attr
return err
}
func (cmd *batchIndexCommandGet) isRead() bool {
return true
}
func (cmd *batchIndexCommandGet) cloneBatchCommand(batch *batchNode) batcher {
res := *cmd
res.batch = batch
res.node = batch.Node
return &res
}
func (cmd *batchIndexCommandGet) Execute() Error {
if len(cmd.batch.offsets) == 1 {
return cmd.executeSingle(cmd.client)
}
return cmd.execute(cmd)
}
func (cmd *batchIndexCommandGet) executeSingle(client *Client) Error {
for _, offset := range cmd.batch.offsets {
br := cmd.records[offset]
var ops []*Operation
if br.headerOnly() {
ops = []*Operation{GetHeaderOp()}
} else if len(br.BinNames) > 0 {
for i := range br.BinNames {
ops = append(ops, GetBinOp(br.BinNames[i]))
}
} else if len(br.Ops) > 0 {
ops = br.Ops
} else {
ops = []*Operation{GetOp()}
}
res, err := client.Operate(cmd.policy.toWritePolicy(), br.Key, ops...)
br.setRecord(res)
if err != nil {
br.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
}
return err
}
}
return nil
}
// Parse all results in the batch. Add records to shared list.
// If the record was not found, the bins will be nil.
func (cmd *batchIndexCommandGet) 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.parseFieldsBatch(resultCode, fieldCount, cmd.records[batchIndex])
if err != nil {
return false, err
}
// Aggregate metrics
metricsEnabled := cmd.node.cluster.metricsEnabled.Load()
if metricsEnabled {
cmd.node.stats.updateOrInsert(cmd.getNamespace(), cmd.getNamespaces(), cmd.commandType(), resultCode)
}
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
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 any
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
}
if resultCode == 0 {
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 *batchIndexCommandGet) 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 *batchIndexCommandGet) generateBatchNodes(cluster *Cluster) ([]*batchNode, Error) {
return newBatchNodeListRecords(cluster, cmd.policy, cmd.records, cmd.sequenceAP, cmd.sequenceSC, cmd.batch)
}
func (cmd *batchIndexCommandGet) getNamespaces() iter.Seq2[string, uint64] {
return cmd.nsIter
}
func (cmd *batchIndexCommandGet) getNamespace() *string {
return nil
}
func (cmd *batchIndexCommandGet) nsIter(yield func(string, uint64) bool) {
for _, br := range cmd.records {
if !yield(br.Key.namespace, 1) {
return
}
}
}