我正在.csv
使用 PHP 将数据插入 MySQL 数据库,但无法插入超过 922 行。每次行数都不同,通常是 841 或 837,但重新启动我的 mysql-server PC 后,行数达到最大值 - 922 行。我正在运行 Ubuntu Server 16.04。
vi /var/log/mysql/error.log
是:
0 [Note] InnoDB: page_cleaner: 1000ms intended loop took 223238094ms.
The settings might not be optimal. (flushed=0 and evicted=0, during the time.)
答案1
这是页面的时间限制(30 秒)。只需添加 set_time_limit(0); 行即可完全消除时间限制。现在一切正常。