Keep running into a weird problem with a PHP script. The idea of the script is to grab a bunch of data from a MySQL table, process it, compare it some data from another table, and print out the results to a file in CSV format.
This script will run several hundreds of thousands of iterations to complete. Problem I have is that even with using unset() on the arrays and free() on my MySQL queries, memory continues to be used up until around iteration 350,000 or so it runs out of memory.
Without fail, every time I run the script the memory allocation as reported by memory_get_usage() stays the same until approximately ever 1050 iterations. Then it will increase by exactly 262,144 bytes. Through testing it also always increments in the exact same place in the script. In the code block below it will always increment in one of the iterations of b2a (maximum of 4 possible iterations).
//up here we get the data to run analysis/comparisons on.
echo "{$lineCounter}b: " . memory_get_usage(TRUE) . "\n"; //27525120
if ($AttResults = $db_cx->query($ObsAttQuery)) {
echo "{$lineCounter}b1: " . memory_get_usage(TRUE) . "\n"; //27525120
$attArray = array();
echo "{$lineCounter}b2: " . memory_get_usage(TRUE) . "\n"; //27525120
while ($attRow = $AttResults->fetch_object()) {
echo "{$lineCounter}b2a {$attRow->attId}: " . memory_get_usage(TRUE) . "\n"; //27787264
$attArray[$attRow->attId] = $attRow->value;
}
echo "{$lineCounter}b3: " . memory_get_usage(TRUE) . "\n"; //27787264
$AttResults->free();
if (empty($attArray)) continue;
//down here after it is done I have an unset on the $attArray variable
Any suggestions on things to try??