TangSiyang2001 commented on PR #16343: URL: https://github.com/apache/doris/pull/16343#issuecomment-1418554617
```bash mysql> select count(*) from insert_test; +----------+ | count(*) | +----------+ | 14000000 | +----------+ 1 row in set (0.07 sec) mysql> set query_timeout = 3; Query OK, 0 rows affected (0.00 sec) mysql> set insert_timeout = 20; Query OK, 0 rows affected (0.00 sec) mysql> insert into insert_test_dst select * from insert_test limit 10000000; Query OK, 10000000 rows affected (7.13 sec) {'label':'insert_37fa05e44b34d15_b3ae7dc924ca4b6a', 'status':'VISIBLE', 'txnId':'3036'} mysql> set insert_timeout = 3; Query OK, 0 rows affected (0.00 sec) mysql> insert into insert_test_dst select * from insert_test limit 10000000; ERROR 1105 (HY000): errCode = 2, detailMessage = Execute timeout mysql> set query_timeout = 15; Query OK, 0 rows affected (0.00 sec) mysql> insert into insert_test_dst select * from insert_test limit 10000000; Query OK, 10000000 rows affected (7.49 sec) {'label':'insert_df7ac58fca0c428d_b5ea947bc3abe5de', 'status':'VISIBLE', 'txnId':'3039'} -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org