public interface ExecutorExecutionSummaryOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
long |
getNumIterations()
How many times executor's `next()` is called.
|
long |
getNumProducedRows()
How many rows this executor produced totally.
|
long |
getTimeProcessedNs()
Total time cost in this executor.
|
boolean |
hasNumIterations()
How many times executor's `next()` is called.
|
boolean |
hasNumProducedRows()
How many rows this executor produced totally.
|
boolean |
hasTimeProcessedNs()
Total time cost in this executor.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
boolean hasTimeProcessedNs()
Total time cost in this executor. Includes self time cost and children time cost.
optional uint64 time_processed_ns = 1;
long getTimeProcessedNs()
Total time cost in this executor. Includes self time cost and children time cost.
optional uint64 time_processed_ns = 1;
boolean hasNumProducedRows()
How many rows this executor produced totally.
optional uint64 num_produced_rows = 2;
long getNumProducedRows()
How many rows this executor produced totally.
optional uint64 num_produced_rows = 2;
boolean hasNumIterations()
How many times executor's `next()` is called.
optional uint64 num_iterations = 3;
long getNumIterations()
How many times executor's `next()` is called.
optional uint64 num_iterations = 3;
Copyright © 2024 PingCAP. All rights reserved.