From 1ec20adb5dd8fd27ca0fec155f23e870224f07b4 Mon Sep 17 00:00:00 2001 From: h30054849 Date: Tue, 10 Sep 2024 10:17:56 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=A4=9A=E6=9C=BA=E5=B9=B6?= =?UTF-8?q?=E8=A1=8Ccomm=5Fmax=5Fstream=20guc=E5=8F=82=E6=95=B0=E8=AF=B4?= =?UTF-8?q?=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...5\217\202\346\225\260\350\257\264\346\230\216.md" | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git "a/content/zh/docs/ExtensionReference/spqplugin-GUC\345\217\202\346\225\260\350\257\264\346\230\216.md" "b/content/zh/docs/ExtensionReference/spqplugin-GUC\345\217\202\346\225\260\350\257\264\346\230\216.md" index 2aea67cb6..9e1a77e19 100644 --- "a/content/zh/docs/ExtensionReference/spqplugin-GUC\345\217\202\346\225\260\350\257\264\346\230\216.md" +++ "b/content/zh/docs/ExtensionReference/spqplugin-GUC\345\217\202\346\225\260\350\257\264\346\230\216.md" @@ -841,3 +841,15 @@ spqplugin.cluster_map = 'node1|x.x.x.x|12300,node2|x.x.x.x|12300' - off表示不使用多机并行更新数据,使用内核原有功能。 **默认值**:off + +## comm_max_stream + +**参数说明**: 参数值为整数,该参数用于限制多机并行中两个节点间最大stream个数(streamID个数)。 + +- 计算公式: dop * dop * stream个数 +- 若链接多个QE节点: (dop * dop * stream个数) * QE节点数 +- 同时运行多个plan共用当前所有streamID,因此总stream数需要每个plan的stream个数相加 + +**取值范围**:1\~60000 + +**默认值**:1024 -- Gitee