-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
operator.go
483 lines (422 loc) · 15.4 KB
/
operator.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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
// Copyright 2020 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 colexecop
import (
"context"
"time"
"github.com/cockroachdb/cockroach/pkg/col/coldata"
"github.com/cockroachdb/cockroach/pkg/sql/colexecerror"
"github.com/cockroachdb/cockroach/pkg/sql/execinfra/execopnode"
"github.com/cockroachdb/cockroach/pkg/sql/execinfrapb"
"github.com/cockroachdb/cockroach/pkg/sql/execstats"
"github.com/cockroachdb/errors"
)
// Operator is a column vector operator that produces a Batch as output.
type Operator interface {
// Init initializes this operator. It will be called once at operator setup
// time. Second, third, etc calls should be noops. If an operator has any
// input operators, it's responsible for calling Init on all of those input
// operators as well.
//
// Canceling the provided context results in forceful termination of
// execution. The operators are expected to hold onto the provided context
// (and derive a new one if needed) that is then used for Next(),
// DrainMeta(), and Close() calls (when applicable).
//
// It might panic with an expected error, so there must be a "root"
// component that will catch that panic.
Init(ctx context.Context)
// Next returns the next Batch from this operator. Once the operator is
// finished, it will return a Batch with length 0. Subsequent calls to
// Next at that point will always return a Batch with length 0.
//
// Calling Next may invalidate the contents of the last Batch returned by
// Next.
//
// It might panic with an expected error, so there must be a "root"
// component that will catch that panic.
Next() coldata.Batch
execopnode.OpNode
}
// DrainableClosableOperator is a ClosableOperator that also implements
// DrainMeta. Next, DrainMeta, and Close may not be called concurrently.
type DrainableClosableOperator interface {
ClosableOperator
MetadataSource
}
// KVReader is an operator that performs KV reads.
// TODO(yuzefovich): consider changing the contract to remove the mention of
// concurrency safety once stats are only retrieved from Next goroutines.
type KVReader interface {
// GetBytesRead returns the number of bytes read from KV by this operator.
// It must be safe for concurrent use.
GetBytesRead() int64
// GetKVPairsRead returns the number of key-values pairs read from KV by
// this operator. It must be safe for concurrent use.
GetKVPairsRead() int64
// GetRowsRead returns the number of rows read from KV by this operator.
// It must be safe for concurrent use.
GetRowsRead() int64
// GetBatchRequestsIssued returns the number of BatchRequests issued to KV
// by this operator. It must be safe for concurrent use.
GetBatchRequestsIssued() int64
// GetContentionTime returns the amount of time KV reads spent
// contending. It must be safe for concurrent use.
GetContentionTime() time.Duration
// GetScanStats returns statistics about the scan that happened during the
// KV reads. It must be safe for concurrent use.
GetScanStats() execstats.ScanStats
// GetConsumedRU returns the number of RUs that were consumed during the
// KV reads.
GetConsumedRU() uint64
// GetKVCPUTime returns the CPU time consumed *on the current goroutine* by
// KV requests. It must be safe for concurrent use. It is used to calculate
// the SQL CPU time.
GetKVCPUTime() time.Duration
// UsedStreamer returns whether the Streamer API was used by the KVReader.
UsedStreamer() bool
}
// ZeroInputNode is an execopnode.OpNode with no inputs.
type ZeroInputNode struct{}
// ChildCount implements the execopnode.OpNode interface.
func (ZeroInputNode) ChildCount(verbose bool) int {
return 0
}
// Child implements the execopnode.OpNode interface.
func (ZeroInputNode) Child(nth int, verbose bool) execopnode.OpNode {
colexecerror.InternalError(errors.AssertionFailedf("invalid index %d", nth))
// This code is unreachable, but the compiler cannot infer that.
return nil
}
// NewOneInputNode returns an execopnode.OpNode with a single Operator input.
func NewOneInputNode(input Operator) OneInputNode {
return OneInputNode{Input: input}
}
// OneInputNode is an execopnode.OpNode with a single Operator input.
type OneInputNode struct {
Input Operator
}
// ChildCount implements the execopnode.OpNode interface.
func (OneInputNode) ChildCount(verbose bool) int {
return 1
}
// Child implements the execopnode.OpNode interface.
func (n OneInputNode) Child(nth int, verbose bool) execopnode.OpNode {
if nth == 0 {
return n.Input
}
colexecerror.InternalError(errors.AssertionFailedf("invalid index %d", nth))
// This code is unreachable, but the compiler cannot infer that.
return nil
}
// BufferingInMemoryOperator is an Operator that buffers up intermediate tuples
// in memory and knows how to export them once the memory limit has been
// reached.
type BufferingInMemoryOperator interface {
Operator
// ExportBuffered returns all the batches that have been buffered up from the
// input and have not yet been processed by the operator. It needs to be
// called once the memory limit has been reached in order to "dump" the
// buffered tuples into a disk-backed operator. It will return a zero-length
// batch once the buffer has been emptied.
//
// Calling ExportBuffered may invalidate the contents of the last batch
// returned by ExportBuffered.
ExportBuffered(input Operator) coldata.Batch
}
// Closer is an object that releases resources when Close is called. Note that
// this interface must be implemented by all operators that could be planned on
// top of other operators that do actually need to release the resources (e.g.
// if we have a simple project on top of a disk-backed operator, that simple
// project needs to implement this interface so that Close() call could be
// propagated correctly).
type Closer interface {
// Close releases the resources associated with this Closer. If this Closer
// is an Operator, the implementation of Close must be safe to execute even
// if Operator.Init wasn't called. Multiple calls to Close() are allowed,
// and most of the implementations should make all calls except for the
// first one no-ops.
//
// Unless the Closer derives its own context with a separate tracing span,
// the argument context rather than the one from Init() must be used
// (wherever necessary) by the implementation. This is so since the span in
// the context from Init() might be already finished when Close() is called
// whereas the argument context will contain an unfinished span.
Close(context.Context) error
}
// Closers is a slice of Closers.
type Closers []Closer
// Close closes all Closers and returns the last error (if any occurs).
func (c Closers) Close(ctx context.Context) error {
var lastErr error
for _, closer := range c {
if err := closer.Close(ctx); err != nil {
lastErr = err
}
}
return lastErr
}
// Resetter is an interface that operators can implement if they can be reset
// either for reusing (to keep the already allocated memory) or during tests.
type Resetter interface {
// Reset resets the operator for reuse.
Reset(ctx context.Context)
}
// ResettableOperator is an Operator that can be reset.
type ResettableOperator interface {
Operator
Resetter
}
// FeedOperator is used to feed an Operator chain with input by manually
// setting the next batch.
type FeedOperator struct {
ZeroInputNode
NonExplainable
batch coldata.Batch
}
// NewFeedOperator returns a new feed operator.
func NewFeedOperator() *FeedOperator {
return &FeedOperator{}
}
// Init implements the colexecop.Operator interface.
func (FeedOperator) Init(context.Context) {}
// Next implements the colexecop.Operator interface.
func (o *FeedOperator) Next() coldata.Batch {
return o.batch
}
// SetBatch sets the next batch to be returned on Next call.
func (o *FeedOperator) SetBatch(batch coldata.Batch) {
o.batch = batch
}
var _ Operator = &FeedOperator{}
// NonExplainable is a marker interface which identifies an Operator that
// should be omitted from the output of EXPLAIN (VEC). Note that VERBOSE
// explain option will override the omitting behavior.
type NonExplainable interface {
// nonExplainableMarker is just a marker method. It should never be called.
nonExplainableMarker()
}
// InitHelper is a simple struct that helps Operators implement Init() method.
type InitHelper struct {
// Ctx is the context passed on the first call to Init(). If it is nil, then
// Init() hasn't been called yet.
// NOTE: if a non-nil context is needed, use EnsureCtx() to retrieve it
// instead of accessing this field directly.
Ctx context.Context
}
// Init marks the InitHelper as initialized. If true is returned, this is the
// first call to Init.
func (h *InitHelper) Init(ctx context.Context) bool {
if h.Ctx != nil {
return false
}
if ctx == nil {
colexecerror.InternalError(errors.AssertionFailedf("nil context is passed"))
}
h.Ctx = ctx
return true
}
// EnsureCtx returns the context which this helper was initialized with or the
// background context if Init hasn't been called.
func (h *InitHelper) EnsureCtx() context.Context {
if h.Ctx == nil {
return context.Background()
}
return h.Ctx
}
// MakeOneInputHelper returns a new OneInputHelper.
func MakeOneInputHelper(input Operator) OneInputHelper {
return OneInputHelper{
OneInputNode: NewOneInputNode(input),
}
}
// OneInputHelper is an execopnode.OpNode which only needs to initialize its
// single Operator input in Init().
type OneInputHelper struct {
OneInputNode
InitHelper
}
// Init implements the Operator interface.
func (h *OneInputHelper) Init(ctx context.Context) {
if !h.InitHelper.Init(ctx) {
return
}
h.Input.Init(h.Ctx)
}
// CloserHelper is a simple helper that helps Operators implement Closer. If
// close returns true, resources may be released, if it returns false, close has
// already been called.
type CloserHelper struct {
closed bool
}
// Close marks the CloserHelper as closed. If true is returned, this is the
// first call to Close.
func (c *CloserHelper) Close() bool {
if c.closed {
return false
}
c.closed = true
return true
}
// Reset resets the CloserHelper so that it can be closed again.
func (c *CloserHelper) Reset() {
c.closed = false
}
// ClosableOperator is an Operator that needs to be Close()'d.
// NOTE: even if the Operator wasn't Init()'ed properly, it must still be safe
// to Close().
type ClosableOperator interface {
Operator
Closer
}
// MakeOneInputCloserHelper returns a new OneInputCloserHelper.
func MakeOneInputCloserHelper(input Operator) OneInputCloserHelper {
return OneInputCloserHelper{
OneInputNode: NewOneInputNode(input),
}
}
// OneInputCloserHelper is an execopnode.OpNode with a single Operator input
// that might need to be Close()'d.
type OneInputCloserHelper struct {
OneInputNode
CloserHelper
}
var _ Closer = &OneInputCloserHelper{}
// Close implements the Closer interface.
func (c *OneInputCloserHelper) Close(ctx context.Context) error {
if !c.CloserHelper.Close() {
return nil
}
if closer, ok := c.Input.(Closer); ok {
return closer.Close(ctx)
}
return nil
}
// MakeOneInputInitCloserHelper returns a new OneInputInitCloserHelper.
func MakeOneInputInitCloserHelper(input Operator) OneInputInitCloserHelper {
return OneInputInitCloserHelper{
OneInputCloserHelper: MakeOneInputCloserHelper(input),
}
}
// OneInputInitCloserHelper is an execopnode.OpNode that only needs to initialize
// its single Operator input in Init() and might need to Close() it too.
type OneInputInitCloserHelper struct {
InitHelper
OneInputCloserHelper
}
// Init implements the Operator interface.
func (h *OneInputInitCloserHelper) Init(ctx context.Context) {
if !h.InitHelper.Init(ctx) {
return
}
h.Input.Init(h.Ctx)
}
// MakeTwoInputInitHelper returns a new TwoInputInitHelper.
func MakeTwoInputInitHelper(inputOne, inputTwo Operator) TwoInputInitHelper {
return TwoInputInitHelper{InputOne: inputOne, InputTwo: inputTwo}
}
// TwoInputInitHelper is an extension of InitHelper that additionally also is an
// execopnode.OpNode with two Operator inputs and provides a reset helper.
type TwoInputInitHelper struct {
InitHelper
InputOne Operator
InputTwo Operator
}
// Init initializes both inputs and returns true if this is the first time Init
// was called.
func (h *TwoInputInitHelper) Init(ctx context.Context) bool {
if !h.InitHelper.Init(ctx) {
return false
}
h.InputOne.Init(h.Ctx)
h.InputTwo.Init(h.Ctx)
return true
}
func (h *TwoInputInitHelper) ChildCount(verbose bool) int {
return 2
}
func (h *TwoInputInitHelper) Child(nth int, verbose bool) execopnode.OpNode {
switch nth {
case 0:
return h.InputOne
case 1:
return h.InputTwo
}
colexecerror.InternalError(errors.AssertionFailedf("invalid idx %d", nth))
// This code is unreachable, but the compiler cannot infer that.
return nil
}
func (h *TwoInputInitHelper) Reset(ctx context.Context) {
if r, ok := h.InputOne.(Resetter); ok {
r.Reset(ctx)
}
if r, ok := h.InputTwo.(Resetter); ok {
r.Reset(ctx)
}
}
type noopOperator struct {
OneInputInitCloserHelper
NonExplainable
}
var _ ResettableOperator = &noopOperator{}
// NewNoop returns a new noop Operator.
func NewNoop(input Operator) ResettableOperator {
return &noopOperator{OneInputInitCloserHelper: MakeOneInputInitCloserHelper(input)}
}
func (n *noopOperator) Next() coldata.Batch {
return n.Input.Next()
}
func (n *noopOperator) Reset(ctx context.Context) {
if r, ok := n.Input.(Resetter); ok {
r.Reset(ctx)
}
}
// MetadataSource is an interface implemented by processors and columnar
// operators that can produce metadata.
// TODO(yuzefovich): remove this interface in favor of DrainableOperator and
// clarify that calling DrainMeta on an uninitialized operator is illegal.
type MetadataSource interface {
// DrainMeta returns all the metadata produced by the processor or operator.
// It will be called exactly once, usually, when the processor or operator
// has finished doing its computations. This is a signal that the output
// requires no more rows to be returned.
// Implementers can choose what to do on subsequent calls (if such occur).
// TODO(yuzefovich): modify the contract to require returning nil on all
// calls after the first one.
DrainMeta() []execinfrapb.ProducerMetadata
}
// MetadataSources is a slice of MetadataSource.
type MetadataSources []MetadataSource
// DrainMeta calls DrainMeta on all MetadataSources and returns a single slice
// with all the accumulated metadata. Note that this method wraps the draining
// with the panic-catcher so that the callers don't have to.
func (s MetadataSources) DrainMeta() []execinfrapb.ProducerMetadata {
var result []execinfrapb.ProducerMetadata
if err := colexecerror.CatchVectorizedRuntimeError(func() {
for _, src := range s {
result = append(result, src.DrainMeta()...)
}
}); err != nil {
meta := execinfrapb.GetProducerMeta()
meta.Err = err
result = append(result, *meta)
}
return result
}
// VectorizedStatsCollector is the common interface implemented by several
// variations of the execution statistics collectors. At the moment of writing
// we have two variants: the "default" option (for all Operators) and the
// "network" option (strictly for colrpc.Inboxes).
type VectorizedStatsCollector interface {
Operator
// GetStats returns the execution statistics of a single Operator. It will
// always return non-nil (but possibly empty) object.
GetStats() *execinfrapb.ComponentStats
}