mysql设置查询超时
mysql 5.6 中,名为: max_statement_time (毫秒)
5.7 使用 max_execution_time(毫秒)
例如设置10秒超时
mysql> set max_execution_time =10000; Query OK, 0 rows affected (0.00 sec)
查询一个耗时久的查询得到
ERROR 1028 (HY000): Sort aborted: Query execution was interrupted, maximum statement execution time exceeded
这样能从mysql避免那种耗时查询