-
Notifications
You must be signed in to change notification settings - Fork 618
Closed as not planned
Labels
Milestone
Description
I executed a batch insert SQL, but the execution was very slow. I took a look at Flame Graph and the sql parsing took most of the time. I looked at the source code of this project, which uses the parser generated by javacc. Will this have a significant impact on performance? I hope someone can help improve it.
my sql like this:
insert into trade_info (id, ....)
values
(111, ...),
(222, ...),
(333, ...),
...
-- 1000 rowsReactions are currently unavailable
