From cc4889a2ade10dfacdf59e68c993c98178cf17a7 Mon Sep 17 00:00:00 2001 From: ryjiang Date: Thu, 28 Oct 2021 20:13:48 +0800 Subject: [PATCH] [skip ci]Add comments in chap09_data_coord.md (#10791) Signed-off-by: ruiyi.jiang --- docs/developer_guides/chap09_data_coord.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/developer_guides/chap09_data_coord.md b/docs/developer_guides/chap09_data_coord.md index 9fe8f80c44..47f285febb 100644 --- a/docs/developer_guides/chap09_data_coord.md +++ b/docs/developer_guides/chap09_data_coord.md @@ -13,8 +13,9 @@ type DataCoord interface { // Flush notifies DataCoord to flush all current growing segments of specified Collection Flush(ctx context.Context, req *datapb.FlushRequest) (*datapb.FlushResponse, error) - + // AssignSegmentID applies allocations for specified Coolection/Partition and related Channel Name(Virtial Channel) AssignSegmentID(ctx context.Context, req *datapb.AssignSegmentIDRequest) (*datapb.AssignSegmentIDResponse, error) + // GetSegmentStates requests segment state information GetSegmentStates(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) GetInsertBinlogPaths(ctx context.Context, req *datapb.GetInsertBinlogPathsRequest) (*datapb.GetInsertBinlogPathsResponse, error) GetSegmentInfoChannel(ctx context.Context) (*milvuspb.StringResponse, error)