mirror of https://github.com/milvus-io/milvus.git
[skip ci] Add comment for types - Datacoord.GetSegmentInfo (#9754)
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>pull/9763/head
parent
c2731dddff
commit
e9d2d0b17b
|
@ -162,6 +162,14 @@ type DataCoord interface {
|
|||
// only row count for now
|
||||
// error is returned only when some communication issue occurs
|
||||
GetPartitionStatistics(ctx context.Context, req *datapb.GetPartitionStatisticsRequest) (*datapb.GetPartitionStatisticsResponse, error)
|
||||
|
||||
// GetSegmentInfo requests segment info
|
||||
//
|
||||
// ctx is the context to control request deadline and cancellation
|
||||
// req contains the list of segment ids to query
|
||||
//
|
||||
// response struct `GetSegmentInfoResponse` contains the list of segment info
|
||||
// error is returned only when some communication issue occurs
|
||||
GetSegmentInfo(ctx context.Context, req *datapb.GetSegmentInfoRequest) (*datapb.GetSegmentInfoResponse, error)
|
||||
GetRecoveryInfo(ctx context.Context, req *datapb.GetRecoveryInfoRequest) (*datapb.GetRecoveryInfoResponse, error)
|
||||
SaveBinlogPaths(ctx context.Context, req *datapb.SaveBinlogPathsRequest) (*commonpb.Status, error)
|
||||
|
|
Loading…
Reference in New Issue