From 5318f3085c19d82af188defd7a01717ede8f55bf Mon Sep 17 00:00:00 2001 From: Xianhui Lin <35839735+JsDove@users.noreply.github.com> Date: Fri, 11 Apr 2025 18:04:49 +0800 Subject: [PATCH] feat: Add configuration for mixCoord (#41246) Add configuration for mixCoord relate-pr:https://github.com/milvus-io/milvus/pull/41006 issue : https://github.com/milvus-io/milvus/issues/37764 Signed-off-by: Xianhui.Lin --- cmd/tools/config/generate.go | 4 ++++ configs/milvus.yaml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/cmd/tools/config/generate.go b/cmd/tools/config/generate.go index 0e012347bb..21ee1896e2 100644 --- a/cmd/tools/config/generate.go +++ b/cmd/tools/config/generate.go @@ -258,6 +258,10 @@ func WriteYaml(w io.Writer) { # natsmq configuration. # more detail: https://docs.nats.io/running-a-nats-service/configuration`, }, + { + name: "mixCoord", + header: "\n# Related configuration of mixCoord", + }, { name: "rootCoord", header: "\n# Related configuration of rootCoord, used to handle data definition language (DDL) and data control language (DCL) requests", diff --git a/configs/milvus.yaml b/configs/milvus.yaml index aa87aac409..d21b6dda93 100644 --- a/configs/milvus.yaml +++ b/configs/milvus.yaml @@ -247,6 +247,10 @@ natsmq: maxBytes: # How many bytes the single P-channel may contain. Removing oldest messages if the P-channel exceeds this size maxMsgs: # How many message the single P-channel may contain. Removing oldest messages if the P-channel exceeds this limit +# Related configuration of mixCoord +mixCoord: + enableActiveStandby: false + # Related configuration of rootCoord, used to handle data definition language (DDL) and data control language (DCL) requests rootCoord: dmlChannelNum: 16 # The number of DML-Channels to create at the root coord startup.