From f4e984bc2d9efca8ce0985716834106b5051f1e9 Mon Sep 17 00:00:00 2001 From: ryjiang Date: Thu, 18 Nov 2021 22:17:57 +0800 Subject: [PATCH] [skip ci]Add comments in chap07_query_coordinator.md (#12051) Signed-off-by: ruiyi.jiang --- docs/developer_guides/chap07_query_coordinator.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/developer_guides/chap07_query_coordinator.md b/docs/developer_guides/chap07_query_coordinator.md index de6ae398bf..067b2d534b 100644 --- a/docs/developer_guides/chap07_query_coordinator.md +++ b/docs/developer_guides/chap07_query_coordinator.md @@ -246,6 +246,7 @@ type QueryNode interface { AddQueryChannel(ctx context.Context, req *querypb.AddQueryChannelRequest) (*commonpb.Status, error) // RemoveQueryChannel removes the query channel for QueryNode component. RemoveQueryChannel(ctx context.Context, req *querypb.RemoveQueryChannelRequest) (*commonpb.Status, error) + // WatchDmChannels watches the channels about data manipulation. WatchDmChannels(ctx context.Context, req *querypb.WatchDmChannelsRequest) (*commonpb.Status, error) // LoadSegments notifies QueryNode to load the sealed segments from storage. The load tasks are sync to this // rpc, QueryNode will return after all the sealed segments are loaded.