-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
catalog_reader.go
276 lines (250 loc) · 8.94 KB
/
catalog_reader.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
// Copyright 2022 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 catkv
import (
"context"
"github.com/cockroachdb/cockroach/pkg/clusterversion"
"github.com/cockroachdb/cockroach/pkg/keys"
"github.com/cockroachdb/cockroach/pkg/kv"
"github.com/cockroachdb/cockroach/pkg/roachpb"
"github.com/cockroachdb/cockroach/pkg/sql/catalog"
"github.com/cockroachdb/cockroach/pkg/sql/catalog/catalogkeys"
"github.com/cockroachdb/cockroach/pkg/sql/catalog/descpb"
"github.com/cockroachdb/cockroach/pkg/sql/catalog/nstree"
"github.com/cockroachdb/cockroach/pkg/sql/sem/catconstants"
"github.com/cockroachdb/cockroach/pkg/util/log"
)
// CatalogReader queries the system.namespace and system.descriptor tables,
// leveraging the SystemDatabaseCache if it is present in the implementation.
//
// The main use case for CatalogReader should be StoredCatalog.
type CatalogReader interface {
// Codec returns the codec used by this CatalogReader.
Codec() keys.SQLCodec
// ScanAll scans the entirety of the descriptor and namespace tables.
ScanAll(ctx context.Context, txn *kv.Txn) (nstree.Catalog, error)
// ScanNamespaceForDatabases scans the portion of the namespace table which
// contains all database name entries.
ScanNamespaceForDatabases(ctx context.Context, txn *kv.Txn) (nstree.Catalog, error)
// ScanNamespaceForDatabaseSchemas scans the portion of the namespace table
// which contains all schema name entries for a given database.
ScanNamespaceForDatabaseSchemas(
ctx context.Context,
txn *kv.Txn,
db catalog.DatabaseDescriptor,
) (nstree.Catalog, error)
// ScanNamespaceForDatabaseEntries scans the portion of the namespace table
// which contains all name entries for children of a given database.
ScanNamespaceForDatabaseEntries(
ctx context.Context,
txn *kv.Txn,
db catalog.DatabaseDescriptor,
) (nstree.Catalog, error)
// ScanNamespaceForSchemaObjects scans the portion of the namespace table
// which contains all object name entries for a given schema.
ScanNamespaceForSchemaObjects(
ctx context.Context, txn *kv.Txn, db catalog.DatabaseDescriptor, sc catalog.SchemaDescriptor,
) (nstree.Catalog, error)
// GetDescriptorEntries gets the descriptors for the desired IDs, but looks in
// the system database cache first if there is one.
GetDescriptorEntries(
ctx context.Context,
txn *kv.Txn,
ids []descpb.ID,
isRequired bool,
expectedType catalog.DescriptorType,
) (nstree.Catalog, error)
// GetNamespaceEntries gets the descriptor IDs for the desired names, but
// looks in the system database cache first if there is one.
GetNamespaceEntries(
ctx context.Context, txn *kv.Txn, nameInfos []descpb.NameInfo,
) (nstree.Catalog, error)
}
// NewCatalogReader is the constructor for the default CatalogReader
// implementation.
func NewCatalogReader(
codec keys.SQLCodec,
version clusterversion.ClusterVersion,
systemDatabaseCache *SystemDatabaseCache,
) CatalogReader {
return &catalogReader{
codec: codec,
version: version,
systemDatabaseCache: systemDatabaseCache,
}
}
// NewUncachedCatalogReader is the constructor for the default CatalogReader
// implementation without a SystemDatabaseCache.
func NewUncachedCatalogReader(codec keys.SQLCodec) CatalogReader {
return &catalogReader{
codec: codec,
}
}
// catalogReader implements the CatalogReader interface by building catalogQuery
// objects and running them, leveraging the SystemDatabaseCache if present.
type catalogReader struct {
codec keys.SQLCodec
// systemDatabaseCache is a cache of system database catalog information.
// Its presence is entirely optional and only serves to eliminate superfluous
// round trips to KV.
systemDatabaseCache *SystemDatabaseCache
// version only needs to be set when systemDatabaseCache is set.
version clusterversion.ClusterVersion
}
var _ CatalogReader = (*catalogReader)(nil)
// Codec is part of the CatalogReader interface.
func (cr catalogReader) Codec() keys.SQLCodec {
return cr.codec
}
// ScanAll is part of the CatalogReader interface.
func (cr catalogReader) ScanAll(ctx context.Context, txn *kv.Txn) (nstree.Catalog, error) {
var mc nstree.MutableCatalog
log.Eventf(ctx, "fetching all descriptors and namespace entries")
cq := catalogQuery{catalogReader: cr}
err := cq.query(ctx, txn, &mc, func(codec keys.SQLCodec, b *kv.Batch) {
b.Header.MaxSpanRequestKeys = 0
descsPrefix := catalogkeys.MakeAllDescsMetadataKey(codec)
b.Scan(descsPrefix, descsPrefix.PrefixEnd())
nsPrefix := codec.IndexPrefix(keys.NamespaceTableID, catconstants.NamespaceTablePrimaryIndexID)
b.Scan(nsPrefix, nsPrefix.PrefixEnd())
})
if err != nil {
return nstree.Catalog{}, err
}
return mc.Catalog, nil
}
func (cr catalogReader) scanNamespace(
ctx context.Context, txn *kv.Txn, prefix roachpb.Key,
) (nstree.Catalog, error) {
var mc nstree.MutableCatalog
cq := catalogQuery{catalogReader: cr}
err := cq.query(ctx, txn, &mc, func(codec keys.SQLCodec, b *kv.Batch) {
b.Header.MaxSpanRequestKeys = 0
b.Scan(prefix, prefix.PrefixEnd())
})
if err != nil {
return nstree.Catalog{}, err
}
return mc.Catalog, nil
}
// ScanNamespaceForDatabases is part of the CatalogReader interface.
func (cr catalogReader) ScanNamespaceForDatabases(
ctx context.Context, txn *kv.Txn,
) (nstree.Catalog, error) {
return cr.scanNamespace(
ctx, txn, catalogkeys.MakeDatabaseNameKey(cr.codec, ""),
)
}
// ScanNamespaceForDatabaseSchemas is part of the CatalogReader interface.
func (cr catalogReader) ScanNamespaceForDatabaseSchemas(
ctx context.Context, txn *kv.Txn, db catalog.DatabaseDescriptor,
) (nstree.Catalog, error) {
return cr.scanNamespace(
ctx, txn, catalogkeys.MakeSchemaNameKey(cr.codec, db.GetID(), "" /* name */),
)
}
// ScanNamespaceForDatabaseEntries is part of the CatalogReader interface.
func (cr catalogReader) ScanNamespaceForDatabaseEntries(
ctx context.Context, txn *kv.Txn, db catalog.DatabaseDescriptor,
) (nstree.Catalog, error) {
return cr.scanNamespace(
ctx, txn, catalogkeys.MakeDatabaseChildrenNameKeyPrefix(cr.codec, db.GetID()),
)
}
// ScanNamespaceForSchemaObjects is part of the CatalogReader interface.
func (cr catalogReader) ScanNamespaceForSchemaObjects(
ctx context.Context, txn *kv.Txn, db catalog.DatabaseDescriptor, sc catalog.SchemaDescriptor,
) (nstree.Catalog, error) {
return cr.scanNamespace(ctx, txn, catalogkeys.MakeObjectNameKey(
cr.codec, db.GetID(), sc.GetID(), "", /* name */
))
}
// GetDescriptorEntries is part of the CatalogReader interface.
func (cr catalogReader) GetDescriptorEntries(
ctx context.Context,
txn *kv.Txn,
ids []descpb.ID,
isRequired bool,
expectedType catalog.DescriptorType,
) (nstree.Catalog, error) {
var mc nstree.MutableCatalog
if len(ids) == 0 {
return nstree.Catalog{}, nil
}
if log.ExpensiveLogEnabled(ctx, 2) {
log.VEventf(ctx, 2, "looking up descriptors by id: %v", ids)
}
var needsQuery bool
for _, id := range ids {
if desc := cr.systemDatabaseCache.lookupDescriptor(cr.version, id); desc != nil {
mc.UpsertDescriptorEntry(desc)
} else if id != descpb.InvalidID {
needsQuery = true
}
}
// Only run a query when absolutely necessary.
if needsQuery {
cq := catalogQuery{
catalogReader: cr,
isRequired: isRequired,
expectedType: expectedType,
}
err := cq.query(ctx, txn, &mc, func(codec keys.SQLCodec, b *kv.Batch) {
for _, id := range ids {
if id != descpb.InvalidID && mc.LookupDescriptorEntry(id) == nil {
b.Get(catalogkeys.MakeDescMetadataKey(codec, id))
}
}
})
if err != nil {
return nstree.Catalog{}, err
}
}
if isRequired {
for _, id := range ids {
if mc.LookupDescriptorEntry(id) == nil {
return nstree.Catalog{}, wrapError(expectedType, id, requiredError(expectedType, id))
}
}
}
return mc.Catalog, nil
}
// GetNamespaceEntries is part of the CatalogReader interface.
func (cr catalogReader) GetNamespaceEntries(
ctx context.Context, txn *kv.Txn, nameInfos []descpb.NameInfo,
) (nstree.Catalog, error) {
if len(nameInfos) == 0 {
return nstree.Catalog{}, nil
}
var mc nstree.MutableCatalog
var needsQuery bool
for _, nameInfo := range nameInfos {
if id, ts := cr.systemDatabaseCache.lookupDescriptorID(cr.version, nameInfo); id != descpb.InvalidID {
mc.UpsertNamespaceEntry(nameInfo, id, ts)
} else if nameInfo.Name != "" {
needsQuery = true
}
}
// Only run a query when absolutely necessary.
if needsQuery {
cq := catalogQuery{catalogReader: cr}
err := cq.query(ctx, txn, &mc, func(codec keys.SQLCodec, b *kv.Batch) {
for _, nameInfo := range nameInfos {
if nameInfo.Name != "" && mc.LookupNamespaceEntry(nameInfo) == nil {
b.Get(catalogkeys.EncodeNameKey(codec, nameInfo))
}
}
})
if err != nil {
return nstree.Catalog{}, err
}
}
return mc.Catalog, nil
}