public static interface Kvrpcpb.TimeDetailOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
long |
getKvReadWallTimeMs()
KV read wall Time means the time used in key/value scan and get.
|
long |
getProcessWallTimeMs()
Off-cpu and on-cpu wall time elapsed to actually process the request payload.
|
long |
getWaitWallTimeMs()
Off-cpu wall time elapsed in TiKV side.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
long getWaitWallTimeMs()
Off-cpu wall time elapsed in TiKV side. Usually this includes queue waiting time and other kind of waitings in series.
int64 wait_wall_time_ms = 1;
long getProcessWallTimeMs()
Off-cpu and on-cpu wall time elapsed to actually process the request payload. It does not include `wait_wall_time`. This field is very close to the CPU time in most cases. Some wait time spend in RocksDB cannot be excluded for now, like Mutex wait time, which is included in this field, so that this field is called wall time instead of CPU time.
int64 process_wall_time_ms = 2;
long getKvReadWallTimeMs()
KV read wall Time means the time used in key/value scan and get.
int64 kv_read_wall_time_ms = 3;
Copyright © 2024 PingCAP. All rights reserved.