You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the current frontend executor architecture of dble, Dble isn't friendly to some scenes.
defect:
When using the RwSplitUser, the time to use the LOAD DATA will increase with frontend processor threads count ( correspond to the config processorExecutor) increases. When the thread count increases, CPU consumption will also increase. In addition, the ShardingUser is not affected by this because of special treatment.
doesn't support MariaDB client with useBatchMultiSend option enabled. Although requests are delivered in order, the order of response is not guaranteed.
Any other scenes that send a lot of packets in a round trip, may affect performance. When the thread count increases, CPU consumption will also increase.
modification:
support response order. fix defect-2.
adjust thread scheduling to ensure fairness and reduce useless waste of resources. fix defect-1 defect-3.
The text was updated successfully, but these errors were encountered:
-Dprocessor=1
-DprocessorExecutor=10
mysql> load data local infile '/opt/test.txt' into table test character SET 'utf8' fields terminated by ' ' lines terminated by '\n';
Query OK, 1000000 rows affected (3.19 sec)
Records: 1000000 Deleted: 0 Skipped: 0 Warnings: 0
-Dprocessor=1
-DprocessorExecutor=20
mysql> load data local infile '/opt/test.txt' into table test character SET 'utf8' fields terminated by ' ' lines terminated by '\n';
Query OK, 1000000 rows affected (5.95 sec)
Records: 1000000 Deleted: 0 Skipped: 0 Warnings: 0
-Dprocessor=1
-DprocessorExecutor=40
mysql> load data local infile '/opt/test.txt' into table test character SET 'utf8' fields terminated by ' ' lines terminated by '\n';
Query OK, 1000000 rows affected (6.00 sec)
Records: 1000000 Deleted: 0 Skipped: 0 Warnings: 0
In the current frontend executor architecture of dble, Dble isn't friendly to some scenes.
The text was updated successfully, but these errors were encountered: