插入数据控制台报错:Thread stack overrun
WM_MATERIAL detail:Thread stack overrun: 13224 bytes used of a 131072 byte stack, and 128000 bytes needed. Use 'mysqld --thread_stack=#' to specify a bigger stack.
这是由于mysql的thread_stack设置较小导致
windows:找到mysql的配置文件my.ini
mac:找到mysql的配置文件 my.cnf
将 thread_stack调整为256k,或者更大,重启mysql服务
使用命令行方式查看设置是否生效
mysql -u root -p;
show variables like '%thread%';
一般到这就可以正常插入数据了,如果项目中整合了Mycat,需要再次重启Mycat,否则还是会报Thread stack overrun。