From b2150e5ecbb0855a239651dc3209fdf68de0029f Mon Sep 17 00:00:00 2001 From: groot Date: Fri, 17 Dec 2021 14:33:59 +0800 Subject: [PATCH] [skip e2e] Add note for design doc (#13586) Signed-off-by: yhmo --- docs/design_docs/milvus_create_collection_en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/design_docs/milvus_create_collection_en.md b/docs/design_docs/milvus_create_collection_en.md index e31beb82d5..c98f03a666 100644 --- a/docs/design_docs/milvus_create_collection_en.md +++ b/docs/design_docs/milvus_create_collection_en.md @@ -135,6 +135,6 @@ _Notes:_ 1. In `Proxy`, all `DDL` requests will be wrapped into `task`, and push the `task` into `DdTaskQueue`. A background service will read a new `task` from `DdTaskQueue` only when the previous one is finished. - So all the `DDL` requests are executed serially on `Proxy` + So all the `DDL` requests are executed serially on `Proxy`. 2. In `RootCoord`, all `DDL` requests will be wrapped into `reqTask`, but there is no task queue, so the `DDL` requests will be executed in parallel on `RootCoord`.