Replies: 3 comments 1 reply
-
|
推荐使用stream load |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
你可以一个批次的量再更大一些,doris有事务,想非常快感觉有点难 |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
请问有解决方案吗?我这边也遇到这样的问题插入doris时超慢的。 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
大概是600个字段的宽表 每次插入150个字段左右 使用如下所示的批量插入sql 一次5000条

INSERT INTO example_tbl VALUES (1000, "baidu1", 3.25) (2000, "baidu2", 4.25) (3000, "baidu3", 5.25);我是在客户端拼接好sql 然后使用MySqlConnector执行的 但是效率特别低下 5000条耗时在4秒左右
可能是什么问题造成的?
Beta Was this translation helpful? Give feedback.
All reactions