Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does PHP7's PDO ext read the entire result set into memory?

I have noticed since I upgraded to PHP7 that some SQL statements no longer work and instead run out of memory.

I have this code:

$query = Yii::$app->db->createCommand('select * from tbl_title')->query();
while ($row = $reader->read()) {
    var_dump($row);
    exit();
}

And Yii2's database abstraction is just an extremely thin layer over PDO's and does not do anything extra. query() does nothing extra except add a line to a log file (Yii2's) for profiling and reader->read() just calls the PDO stream's fetch() function.

But it runs out of memory quoting the size (space used) of my table, i.e. trying to allocate 385 MB of process memory:

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

As a spanner, if I use a query whose result set fits entirely in the 128 MB limit of the PHP process works.

So, has PHP7 changed and can I change it back?

like image 316
Sammaye Avatar asked Sep 30 '16 07:09

Sammaye


People also ask

What does PDO fetchAll return?

PDOStatement::fetchAll() returns an array containing all of the remaining rows in the result set. The array represents each row as either an array of column values or an object with properties corresponding to each column name. An empty array is returned if there are zero results to fetch.

How PDO works?

PDO—PHP Data Objects—are a database access layer providing a uniform method of access to multiple databases. It doesn't account for database-specific syntax, but can allow for the process of switching databases and platforms to be fairly painless, simply by switching the connection string in many instances.

What is PDO :: PARAM_STR in PHP?

PDO::PARAM_STR. Represents SQL character data types. For an INOUT parameter, use the bitwise OR operator to append PDO::PARAM_INPUT_OUTPUT to the type of data being bound. Set the fourth parameter, length , to the maximum expected length of the output value.


1 Answers

It is not directly PHP7-related. The issue is due to new mysqlnd driver, so you can experience the the same problem even with PHP 5.x as well. It is actually a bugfix, because even before the memory was still allocated, but it didn't count towards memory_limit.

To avoid a memory issue you have to use unbuffered queries for the large resultsets.

So, for the query that is expecting a large dataset, set the proper setting like this:

$pdo->setAttribute(PDO::MYSQL_ATTR_USE_BUFFERED_QUERY, false);

For the further reading, I've got a decent explanation in my PDO tutorial, thanks to Nikic, whose critical feedback was invaluable.

like image 129
Your Common Sense Avatar answered Oct 20 '22 04:10

Your Common Sense