Allowed memory size of 134217728 bytes exhausted (tried to allocate 4294967296 bytes)

前端 未结 4 1181
逝去的感伤
逝去的感伤 2020-12-03 19:08

My project uses an open source PHP MySQL library https://github.com/ajillion/PHP-MySQLi-Database-Class

But the project mid-year report: \"Fatal error: Allowed memory

相关标签:
4条回答
  • 2020-12-03 19:15

    You are exceeding the maximun available memory. Yow have two options:

    • Increase the maximum allowed memory to each PHP script either by configuration (memory_limit directive in php.ini) or in execution time by using ini_set('memory_limit', '200M')

    • Improve the code to handle only the required information.

    0 讨论(0)
  • 2020-12-03 19:20

    If you're trying to read in an entire table in one go, and that table has a lot of rows and columns then running out of memory is inevitable. You can put it off by upping the memory limit in php.ini but the problem will only reoccur when you add a few thousand more rows.

    You need to rewrite your script to be more sensible about what it fetches. If you only need specific records then pulling down the entire table and looking for the row(s) you want in the result set is horrible inefficient. Use a WHERE clause to specify what you really want to get. The rule of thumb with PHP/SQL applications is "Use SQL wherever possible to specify what you want, then do what you need to do with it in PHP".

    Of course it may be that there's an entirely legitimate reason why you need to process an entire table in PHP. In that case, you should fetch the data in chunks (say 100 rows at a time) with LIMIT and OFFSET, process those rows, get the next chunk, process those and so on until you've gone through the entire table. That will far less memory than trying to load the entire table at once

    0 讨论(0)
  • 2020-12-03 19:22

    I read this bug report here: https://bugs.php.net/bug.php?id=51386

    Your problem seems to happen because there is a longblob or longtext in the columns of the table.

    longtext / longblob have a maximum length of 4294967295 [4GB] thats why mysqli tries to allocated that memory for the buffer to be sure nothing is lost. I would suggest that you use mediumtext (16777215 [16MB] max length), that should be enough for everything usually.

    Update: Because this answer has seen some activity I add this solution from Phil_1984 (see comments)

    I use mysqli and after reading that quote from php dev, adding a $stmt->store_result(); between execute and bind_result seems to fix the issues for me

    => If you use $stmt->store_result() you can use mysqli with longblob / longtext without getting the error.

    -

    Old Answer: I suggest that you either change the column to another type (mediumtext) or use PDO (i think it doesnt have that problem). but if you want to keep the column as longtext, you have to switch your mysql library

    Quote from PHP Dev:

    This is a known limitation of ext/mysqli when using libmysql (always in 5.2 and previous) and when libmysql is enabled with 5.3 . The reason is that the server sends not too specific metadata about the column. This longtext has a max length of 4G and ext/mysqli tries to bind with the max length, to be sure no data loss occurs (data doesn't fit in the bind buffer on C level). However, that means 4G for a longtext/longblob column. ext/mysqli has been changed to have a way to work around that. You need to call mysqli_stmt_store_result() which will store the data locally, which means, of course a higher memory usage for PHP. However, because you use libmysql this won't hit the PHP's memory limit, for sure. During store_result the max_length of every column will be calculated and then when bind_result is executed only a buffer with size of max_length will be allocated, which will be definitely lower than 4G. In short, prepare execute store_result bind_result fetch...fetch...fetch

    0 讨论(0)
  • 2020-12-03 19:22

    Doens't seem like a huge table! Seems like a endless loop! It tries to allocate about 4gb, i dont think you have such a big table....

    check that you don't create a loop here:

    call_user_func_array (array ($ stmt, 'bind_result'), $ parameters);
    

    maybe you should post the code that is around this line.

    0 讨论(0)
提交回复
热议问题