[skip ci]Update data coordinator doc (#7570)

Signed-off-by: ruiyi.jiang <ruiyi.jiang@zilliz.com>
pull/7589/head
ryjiang 2021-09-08 17:12:11 +08:00 committed by GitHub
parent 50c677f72b
commit 60b3eaec02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -15,7 +15,7 @@ type DataCoord interface {
Component
TimeTickProvider
Flush(ctx context.Context, req *datapb.FlushRequest) (*commonpb.Status, error)
Flush(ctx context.Context, req *datapb.FlushRequest) (*datapb.FlushResponse, error)
AssignSegmentID(ctx context.Context, req *datapb.AssignSegmentIDRequest) (*datapb.AssignSegmentIDResponse, error)
GetSegmentStates(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error)
@ -26,6 +26,9 @@ type DataCoord interface {
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)
GetFlushedSegments(ctx context.Context, req *datapb.GetFlushedSegmentsRequest) (*datapb.GetFlushedSegmentsResponse, error)
GetMetrics(ctx context.Context, req *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error)
}
```