MariaDB [(none)]> show variables like '%timeout';
+----------------------------+----------+
| Variable_name | Value |
+----------------------------+----------+
| connect_timeout | 10 |
| delayed_insert_timeout | 300 |
| innodb_lock_wait_timeout | 50 |
| innodb_rollback_on_timeout | OFF |
| interactive_timeout | 28800 |
| lock_wait_timeout | 31536000 |
| net_read_timeout | 86400 |
| net_write_timeout | 60 |
| slave_net_timeout | 3600 |
| thread_pool_idle_timeout | 60 |
| wait_timeout | 28800 |
+----------------------------+----------+
11 rows in set (0.00 sec)
MariaDB [(none)]> show global variables like '%timeout';
+----------------------------+----------+
| Variable_name | Value |
+----------------------------+----------+
| connect_timeout | 10 |
| delayed_insert_timeout | 300 |
| innodb_lock_wait_timeout | 50 |
| innodb_rollback_on_timeout | OFF |
| interactive_timeout | 28800 |
| lock_wait_timeout | 31536000 |
| net_read_timeout | 86400 |
| net_write_timeout | 60 |
| slave_net_timeout | 3600 |
| thread_pool_idle_timeout | 60 |
| wait_timeout | 86400 |
+----------------------------+----------+
11 rows in set (0.00 sec)
DB는 MariaDB 5.5.44 를 사용하고 있습니다.
장문의 쿼리를 날렸을 시
SQL 오류 (2013): Lost connection to MySQL server during query 오류가 납니다.
구글링을 해서 timeout 값을 조절해봤는데도 똑같네요ㅠ
혹시 비슷한 증상으로 해결하신 분의 도움이 절실합니다~ |