From 3cc539bf53f99246ed004f625b6f4bee901b31b6 Mon Sep 17 00:00:00 2001 From: houfaxin Date: Tue, 12 Aug 2025 14:39:02 +0800 Subject: [PATCH] Update ticdc-manage-changefeed.md --- ticdc/ticdc-manage-changefeed.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ticdc/ticdc-manage-changefeed.md b/ticdc/ticdc-manage-changefeed.md index d61b5c32d9c7c..bb490ab3e3215 100644 --- a/ticdc/ticdc-manage-changefeed.md +++ b/ticdc/ticdc-manage-changefeed.md @@ -286,10 +286,10 @@ For the changefeeds created using `cdc cli` after v4.0.13, Unified Sorter is ena To check whether or not the Unified Sorter feature is enabled on a changefeed, you can run the following example command (assuming the IP address of the PD instance is `http://10.0.10.25:2379`): ```shell -cdc cli --server="http://10.0.10.25:8300" changefeed query --changefeed-id=simple-replication-task | grep 'sort-engine' +cdc cli --server="http://10.0.10.25:8300" changefeed query --changefeed-id=simple-replication-task | grep 'sort_engine' ``` -In the output of the above command, if the value of `sort-engine` is "unified", it means that Unified Sorter is enabled on the changefeed. +In the output of the above command, if the value of `sort_engine` is "unified", it means that Unified Sorter is enabled on the changefeed. > **Note:** >