From 5dd7099cabd01984c3a0eaa356e55a0277bba3b6 Mon Sep 17 00:00:00 2001 From: yuu Date: Thu, 27 Jun 2024 18:44:32 +0800 Subject: [PATCH] =?UTF-8?q?enable=5Fxlog=5Finsert=5Frecord=5Fgroup=20guc?= =?UTF-8?q?=20=20=E5=8F=82=E6=95=B0=E7=9A=84=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DatabaseReference/\350\256\276\347\275\256.md" | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git "a/content/zh/docs/DatabaseReference/\350\256\276\347\275\256.md" "b/content/zh/docs/DatabaseReference/\350\256\276\347\275\256.md" index f10139a8d..7975294fa 100644 --- "a/content/zh/docs/DatabaseReference/\350\256\276\347\275\256.md" +++ "b/content/zh/docs/DatabaseReference/\350\256\276\347\275\256.md" @@ -340,3 +340,16 @@ - off表示关闭事务自动提交。 **默认值**: on + +## enable\_xlog\_insert\_record\_group + +**参数说明**: 设置事务xlog是否分组写入,仅ARM机器生效,默认开。在单并发且有大量的xlog要写入,建议关掉这个开关,性能比打开来的好。比如POC时只有一个连接在进行大量的数据插入场景。 + +该参数属于USERSET类型参数,请参考[表1](重设参数.md#zh-cn_topic_0283137176_zh-cn_topic_0237121562_zh-cn_topic_0059777490_t91a6f212010f4503b24d7943aed6d846)中对应设置方法进行设置。 + +**取值范围**:布尔型 + +- on表示开启xlog分组写入。 +- off表示关闭xlog分组写入。 + +**默认值**: on -- Gitee