-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
cmd_scan.go
97 lines (85 loc) · 2.91 KB
/
cmd_scan.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
// Copyright 2014 The Cockroach Authors.
//
// Use of this software is governed by the Business Source License
// included in the file licenses/BSL.txt.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0, included in the file
// licenses/APL.txt.
package batcheval
import (
"context"
"fmt"
"github.com/cockroachdb/cockroach/pkg/kv/kvserver/batcheval/result"
"github.com/cockroachdb/cockroach/pkg/kv/kvserver/concurrency/lock"
"github.com/cockroachdb/cockroach/pkg/roachpb"
"github.com/cockroachdb/cockroach/pkg/storage"
)
func init() {
RegisterReadOnlyCommand(roachpb.Scan, DefaultDeclareIsolatedKeys, Scan)
}
// Scan scans the key range specified by start key through end key
// in ascending order up to some maximum number of results. maxKeys
// stores the number of scan results remaining for this batch
// (MaxInt64 for no limit).
func Scan(
ctx context.Context, reader storage.Reader, cArgs CommandArgs, resp roachpb.Response,
) (result.Result, error) {
args := cArgs.Args.(*roachpb.ScanRequest)
h := cArgs.Header
reply := resp.(*roachpb.ScanResponse)
var res result.Result
var scanRes storage.MVCCScanResult
var err error
opts := storage.MVCCScanOptions{
Inconsistent: h.ReadConsistency != roachpb.CONSISTENT,
Txn: h.Txn,
MaxKeys: h.MaxSpanRequestKeys,
TargetBytes: h.TargetBytes,
FailOnMoreRecent: args.KeyLocking != lock.None,
Reverse: false,
}
switch args.ScanFormat {
case roachpb.BATCH_RESPONSE:
scanRes, err = storage.MVCCScanToBytes(
ctx, reader, args.Key, args.EndKey, h.Timestamp, opts)
if err != nil {
return result.Result{}, err
}
reply.BatchResponses = scanRes.KVData
case roachpb.KEY_VALUES:
scanRes, err = storage.MVCCScan(
ctx, reader, args.Key, args.EndKey, h.Timestamp, opts)
if err != nil {
return result.Result{}, err
}
reply.Rows = scanRes.KVs
default:
panic(fmt.Sprintf("Unknown scanFormat %d", args.ScanFormat))
}
reply.NumKeys = scanRes.NumKeys
reply.NumBytes = scanRes.NumBytes
if scanRes.ResumeSpan != nil {
reply.ResumeSpan = scanRes.ResumeSpan
reply.ResumeReason = roachpb.RESUME_KEY_LIMIT
}
if h.ReadConsistency == roachpb.READ_UNCOMMITTED {
// NOTE: MVCCScan doesn't use a Prefix iterator, so we don't want to use
// one in CollectIntentRows either so that we're guaranteed to use the
// same cached iterator and observe a consistent snapshot of the engine.
const usePrefixIter = false
reply.IntentRows, err = CollectIntentRows(ctx, reader, usePrefixIter, scanRes.Intents)
if err != nil {
return result.Result{}, err
}
}
if args.KeyLocking != lock.None && h.Txn != nil {
err = acquireUnreplicatedLocksOnKeys(&res, h.Txn, args.ScanFormat, &scanRes)
if err != nil {
return result.Result{}, err
}
}
res.Local.EncounteredIntents = scanRes.Intents
return res, nil
}