enhance: Don't start cdc by default (#45216)

issue: https://github.com/milvus-io/milvus/issues/44123

Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
This commit is contained in:
yihao.dai 2025-11-03 13:15:32 +08:00 committed by GitHub
parent a47c168dd7
commit 27734982fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 6 deletions

View File

@ -40,8 +40,5 @@ nohup ./bin/milvus run querynode --run-with-subprocess >/tmp/querynode.log 2>&1
echo "Starting streamingnode..."
nohup ./bin/milvus run streamingnode --run-with-subprocess >/tmp/streamingnode.log 2>&1 &
echo "Starting cdc..."
nohup ./bin/milvus run cdc --run-with-subprocess >/tmp/cdc.log 2>&1 &
echo "Starting proxy..."
nohup ./bin/milvus run proxy --run-with-subprocess >/tmp/proxy.log 2>&1 &

View File

@ -30,6 +30,3 @@ fi
echo "Starting standalone..."
nohup ./bin/milvus run standalone --run-with-subprocess >/tmp/standalone.log 2>&1 &
echo "Starting cdc..."
nohup ./bin/milvus run cdc --run-with-subprocess >/tmp/cdc.log 2>&1 &