Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have been running a loop where I inserted 50,000 data sets into a MySQL database. Suddenly the server on my hosted space shows this message:

Fatal error: Allowed memory size of 20971520 bytes exhausted (tried to allocate 32 bytes) in /srv/www/htdocs/server/html/email.php on line 14

I know what it means, but how can I reset all the memory so it can be used again?

Note:

I do not want to increase my memory, like with

ini_set('memory_limit', '-1');

but want to completely release it.

share|improve this question
1  
The odds are your script can be rewritten to avoid this problem. – John Conde Apr 8 '12 at 21:36
1  
Thanks John. I know, I have already done this. But how can I release the memory that now seems to be blocked? – user1288263 Apr 8 '12 at 21:37
That depends on your code ... – Jan Hančič Apr 8 '12 at 21:38
Are u putting the query in all at once? can't you split the 50k datasets in small insert packs? maybe post parts of your code here – mightyuhu Apr 8 '12 at 21:40
Do you mean there is no php command / function to release the memory? I actually get this error from calling other scripts as well, not the one that caused the problem! – user1288263 Apr 8 '12 at 21:40
show 6 more comments

1 Answer

When you have a shared system from a Provider in most cases you cannot set the memory limit for yourself. Then when every 100 People on the Server set a higher memory limit the provider has a problem.

So they give a fixed size in your case 20MB and disable the memory_limit function.

20MB is not so much. And when you try to insert a lot of datasets you need some memory. This is the reason why there comes the message 32 bytes from allowed memory 20971520 bytes.

I think with 20MB there is no real good solution to solve this problem. Perhaps you can try to put some logic to the database and make a stored procedures.

share|improve this answer
Thanks for the detailed reply Stony. Do you happen to know how I can reset the memory? It seems as though the variables are still filled with information from a query I did 2 days ago. Funnily, the ini_set function works, even though my provider sells memory increases separately. – user1288263 Apr 10 '12 at 10:39
Sorry for the late reply. I have seen this question again. And perhaps you should add your code here. Perhaps we can optimize this code. Or is this problem solved? – Stony Apr 29 '12 at 11:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.