I can find most of MySQL’s “timeout” variables with a SHOW statement:
mysql> show variables like '%timeout%';+----------------------------+-------+ | Variable_name | Value | +----------------------------+-------+ | connect_timeout | 10 | | delayed_insert_timeout | 300 | | falcon_lock_wait_timeout | 50 | | innodb_lock_wait_timeout | 50 | | ...................................| | interactive_timeout | 28800 | | net_read_timeout | 30 | | net_write_timeout | 60 | | slave_net_timeout | 3600 | | table_lock_wait_timeout | 50 | | wait_timeout | 28800 | +----------------------------+-------+ 11 rows in set (0.01 sec)
The straightforward list conceals several anomalies and buried controversies.
* Should we allow non-integer values like 0.55 seconds, or perhaps make all values milliseconds rather than seconds, in order to …
[Read more]