I keep seeing a memory exhausted error
PHP Fatal error: Allowed memory size of 268 435 456 bytes exhausted
in my log file.
This error comes randomly even when the server is very lightly loaded & not reproducible on localhost. I have a VPS 4 server from hostgator with with loads of MB. The php config allows upto 256 Mb.
The code is below
function func_select_array($qry)
{
$i=0;
$data=array();
$qry_result=mysql_query($qry);
if($qry_result)
{
while ($row=mysql_fetch_assoc($qry_result))
{
$data[$i] = $row;
$i++;
}
return $data;
}
else
{
return 2;
}
}
function func_check_rule_out_bid($auc_id,$bid_amount,$return_freq,$recheck)
{
$bid_qry="select * from tbl_bid where ubaid='".$auc_id."' and ubf='1' order by uba desc limit 0,10";
$bid_array=func_select_array($bid_qry);
}
The table tbl_bid has 2800 records. I get memory exhausted error in the while loop inside func_select_array function. I cannot imagine this query needs 256M+. It does not appear to be a php problem, but something in mysql. Please help...

BLOBs? – Salman A Apr 24 '12 at 19:51mysql_num_rows(),memory_get_peak_usage(), and anything else before memory runs out. Then, next time it occurs, you can review the query and number of records it was trying to iterate over. You might find something you wouldn't normally expect. – Mike B Apr 24 '12 at 20:22select * from tbl_bidwhich means, if there is a field with a large amount of data (a single field in MySQL can be terabyte large), and you stuff it into PHP's memory - well, you can hit a limit. That's perfectly normal and depends on the amount of data you query. – hakre Apr 25 '12 at 18:35