apache / doris-website

Apache Doris Website
https://doris.apache.org/
81 stars 226 forks source link

The example given by group commit JDBC is incorrect #1285

Open xqg1316 opened 1 week ago

xqg1316 commented 1 week ago

chained address: https://doris.apache.org/zh-CN/docs/data-operate/import/import-way/group-commit-manual/

错误内容: 通过 JDBC url 设置,增加sessionVariables=group_commit=async_mode url = jdbc:mysql://127.0.0.1:9030/db?useServerPrepStmts=true&sessionVariables=group_commit=async_mode

正确的写法

通过 JDBC url 设置,增加session变量 group_commit=async_mode

url = jdbc:mysql://127.0.0.1:9030/db?useServerPrepStmts=true&group_commit=async_mode
KassieZ commented 1 week ago

Hi, thank you for the feedback, will fix it ASAP