forked from tsuna/gohbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scanner.go
329 lines (288 loc) · 7.64 KB
/
scanner.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
// Copyright (C) 2017 The GoHBase Authors. All rights reserved.
// This file is part of GoHBase.
// Use of this source code is governed by the Apache License 2.0
// that can be found in the COPYING file.
package gohbase
import (
"bytes"
"context"
"errors"
"fmt"
"io"
"math"
"github.com/tsuna/gohbase/hrpc"
"github.com/tsuna/gohbase/pb"
"google.golang.org/protobuf/proto"
)
const noScannerID = math.MaxUint64
// rowPadding used to pad the row key when constructing a row before
var rowPadding = []byte{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}
type scanner struct {
RPCClient
// rpc is original scan query
rpc *hrpc.Scan
// curRegionScannerID is the id of scanner on current region
curRegionScannerID uint64
// startRow is the start row in the current region
startRow []byte
results []*pb.Result
closed bool
}
func (s *scanner) fetch() ([]*pb.Result, error) {
// keep looping until we have error, some non-empty result or until close
for {
resp, region, err := s.request()
if err != nil {
s.Close()
return nil, err
}
s.update(resp, region)
if s.isDone(resp, region) {
s.Close()
}
if rs := resp.Results; len(rs) > 0 {
return rs, nil
} else if s.closed {
return nil, io.EOF
}
}
}
func (s *scanner) peek() (*pb.Result, error) {
if len(s.results) == 0 {
if s.closed {
// done scanning
return nil, io.EOF
}
rs, err := s.fetch()
if err != nil {
return nil, err
}
// fetch cannot return zero results
s.results = rs
}
return s.results[0], nil
}
func (s *scanner) shift() {
if len(s.results) == 0 {
return
}
// set to nil so that GC isn't blocked to clean up the result
s.results[0] = nil
s.results = s.results[1:]
}
// coalesce combines result with partial if they belong to the same row
// and returns the coalesced result and whether coalescing happened
func (s *scanner) coalesce(result, partial *pb.Result) (*pb.Result, bool) {
if result == nil {
return partial, true
}
if !result.GetPartial() {
// results is not partial, shouldn't coalesce
return result, false
}
if len(partial.Cell) > 0 && !bytes.Equal(result.Cell[0].Row, partial.Cell[0].Row) {
// new row
result.Partial = proto.Bool(false)
return result, false
}
// same row, add the partial
result.Cell = append(result.Cell, partial.Cell...)
if partial.GetStale() {
result.Stale = proto.Bool(partial.GetStale())
}
return result, true
}
func newScanner(c RPCClient, rpc *hrpc.Scan) *scanner {
return &scanner{
RPCClient: c,
rpc: rpc,
startRow: rpc.StartRow(),
curRegionScannerID: noScannerID,
}
}
func toLocalResult(r *pb.Result) *hrpc.Result {
if r == nil {
return nil
}
return hrpc.ToLocalResult(r)
}
func (s *scanner) Next() (*hrpc.Result, error) {
var (
result, partial *pb.Result
err error
)
select {
case <-s.rpc.Context().Done():
s.Close()
return nil, s.rpc.Context().Err()
default:
}
if s.rpc.AllowPartialResults() {
// if client handles partials, just return it
result, err := s.peek()
if err != nil {
return nil, err
}
s.shift()
return toLocalResult(result), nil
}
for {
partial, err = s.peek()
if err == io.EOF && result != nil {
// no more results, return what we have. Next call to the Next() will get EOF
result.Partial = proto.Bool(false)
return toLocalResult(result), nil
}
if err != nil {
// return whatever we have so far and the error
return toLocalResult(result), err
}
var done bool
result, done = s.coalesce(result, partial)
if done {
s.shift()
}
if !result.GetPartial() {
// if not partial anymore, return it
return toLocalResult(result), nil
}
}
}
func (s *scanner) request() (*pb.ScanResponse, hrpc.RegionInfo, error) {
var (
rpc *hrpc.Scan
err error
)
if s.isRegionScannerClosed() {
// open a new region scan to scan on a new region
rpc, err = hrpc.NewScanRange(
s.rpc.Context(),
s.rpc.Table(),
s.startRow,
s.rpc.StopRow(),
s.rpc.Options()...)
} else {
// continuing to scan current region
rpc, err = hrpc.NewScanRange(s.rpc.Context(),
s.rpc.Table(),
s.startRow,
nil,
hrpc.ScannerID(s.curRegionScannerID),
hrpc.NumberOfRows(s.rpc.NumberOfRows()))
}
if err != nil {
return nil, nil, err
}
res, err := s.SendRPC(rpc)
if err != nil {
return nil, nil, err
}
scanres, ok := res.(*pb.ScanResponse)
if !ok {
return nil, nil, errors.New("got non-ScanResponse for scan request")
}
return scanres, rpc.Region(), nil
}
// update updates the scanner for the next scan request
func (s *scanner) update(resp *pb.ScanResponse, region hrpc.RegionInfo) {
if s.isRegionScannerClosed() && resp.ScannerId != nil {
s.openRegionScanner(resp.GetScannerId())
}
if !resp.GetMoreResultsInRegion() {
// we are done with this region, prepare scan for next region
s.closeRegionScanner()
// Normal Scan
if !s.rpc.Reversed() {
s.startRow = region.StopKey()
return
}
// Reversed Scan
// return if we are at the end
if len(region.StartKey()) == 0 {
s.startRow = region.StartKey()
return
}
// create the nearest value lower than the current region startKey
rsk := region.StartKey()
// if last element is 0x0, just shorten the slice
if rsk[len(rsk)-1] == 0x0 {
s.startRow = rsk[:len(rsk)-1]
return
}
// otherwise lower the last element byte value by 1 and pad with 0xffs
tmp := make([]byte, len(rsk), len(rsk)+len(rowPadding))
copy(tmp, rsk)
tmp[len(tmp)-1] = tmp[len(tmp)-1] - 1
s.startRow = append(tmp, rowPadding...)
}
}
func (s *scanner) Close() error {
if s.closed {
return nil
}
s.closed = true
// close the last region scanner
s.closeRegionScanner()
return nil
}
// isDone check if this scanner is done fetching new results
func (s *scanner) isDone(resp *pb.ScanResponse, region hrpc.RegionInfo) bool {
if resp.MoreResults != nil && !*resp.MoreResults {
// or the filter for the whole scan has been exhausted, close the scanner
return true
}
if !s.isRegionScannerClosed() {
// not done with this region yet
return false
}
// Check to see if this region is the last we should scan because:
// (1) it's the last region
if len(region.StopKey()) == 0 && !s.rpc.Reversed() {
return true
}
if s.rpc.Reversed() && len(region.StartKey()) == 0 {
return true
}
// (3) because its stop_key is greater than or equal to the stop_key of this scanner,
// provided that (2) we're not trying to scan until the end of the table.
if !s.rpc.Reversed() {
return len(s.rpc.StopRow()) != 0 && // (2)
bytes.Compare(s.rpc.StopRow(), region.StopKey()) <= 0 // (3)
}
// Reversed Scanner
return len(s.rpc.StopRow()) != 0 && // (2)
bytes.Compare(s.rpc.StopRow(), region.StartKey()) >= 0 // (3)
}
func (s *scanner) isRegionScannerClosed() bool {
return s.curRegionScannerID == noScannerID
}
func (s *scanner) openRegionScanner(scannerId uint64) {
if !s.isRegionScannerClosed() {
panic(fmt.Sprintf("should not happen: previous region scanner was not closed"))
}
s.curRegionScannerID = scannerId
}
func (s *scanner) closeRegionScanner() {
if s.isRegionScannerClosed() {
return
}
if !s.rpc.IsClosing() {
// Not closed at server side
// if we are closing in the middle of scanning a region,
// send a close scanner request
// TODO: add a deadline
rpc, err := hrpc.NewScanRange(context.Background(),
s.rpc.Table(), s.startRow, nil,
hrpc.ScannerID(s.curRegionScannerID),
hrpc.CloseScanner(),
hrpc.NumberOfRows(0))
if err != nil {
panic(fmt.Sprintf("should not happen: %s", err))
}
// If the request fails, the scanner lease will be expired
// and it will be closed automatically by hbase.
// No need to bother clients about that.
go s.SendRPC(rpc)
}
s.curRegionScannerID = noScannerID
}