diff --git a/go-tipb/executor.pb.go b/go-tipb/executor.pb.go index e6f19620..b3d2abb8 100644 --- a/go-tipb/executor.pb.go +++ b/go-tipb/executor.pb.go @@ -1470,8 +1470,8 @@ type ExecutorExecutionSummary struct { // Types that are valid to be assigned to DetailInfo: // *ExecutorExecutionSummary_TiflashScanContext DetailInfo isExecutorExecutionSummary_DetailInfo `protobuf_oneof:"DetailInfo"` - // Serialize kvproto resource_manager.Consumption to tell tidb the consumption info of tiflash. - // NOTE: it's the ru consumption of one MPPTask/cop/batchCop instead of one executor. + // Serialize kvproto resource_manager.Consumption to tell tidb the consumption info. For now it's only for tiflash. + // And it's the ru consumption of one MPPTask/cop/batchCop instead of one executor. RuConsumption []byte `protobuf:"bytes,7,opt,name=ru_consumption,json=ruConsumption" json:"ru_consumption,omitempty"` XXX_unrecognized []byte `json:"-"` } diff --git a/proto/executor.proto b/proto/executor.proto index b208b974..5622e3a7 100644 --- a/proto/executor.proto +++ b/proto/executor.proto @@ -265,8 +265,8 @@ message ExecutorExecutionSummary { TiFlashScanContext tiflash_scan_context = 6; } - // Serialize kvproto resource_manager.Consumption to tell tidb the consumption info of tiflash. - // NOTE: it's the ru consumption of one MPPTask/cop/batchCop instead of one executor. + // Serialize kvproto resource_manager.Consumption to tell tidb the consumption info. For now it's only for tiflash. + // And it's the ru consumption of one MPPTask/cop/batchCop instead of one executor. optional bytes ru_consumption = 7; }