vote up 2 vote down star

I have CLI script that runs over several thousand iterations between runs and it appears to have a memory leak. I'm using a tweaked version of Zend Framework with Smarty for view templating and each iteration uses several MB worth of code. The first run immediately uses nearly 8MB of memory (which is fine) but every following run adds about 80kb.

My main loop looks like this (very simplified)

$users = UsersModel::getUsers();
foreach($users as $user) {
  $obj = new doSomethingAwesome();
  $obj->run($user);
  $obj = null;
  unset($obj);
}

The point is that everything in scope should be unset and the memory freed.

My understanding is that PHP runs through its garbage collection process at it's own desire but it does so at the end of functions/methods/scripts. So something must be leaking memory inside doSomethingAwesome() but as I said it is a huge stack of code.

Ideally, I would love to find some sort of tool that displayed all my variables no matter the scope at some point during execution. Some sort of symbol-table viewer for php.

Does anything like that or any other tools that could help nail down memory leaks in php exist?

flag

5 Answers

vote up 1 vote down check

PHP doesn't have a garbage collector. It uses reference counting to manage memory. Thus, the most common source of memory leaks are cyclic references and global variables. If you use a framework, you'll have a lot of code to trawl through to find it, I'm afraid. The simplest instrument is to selectively place calls to memory_get_usage and narrow it down to where the code leaks. You can also use xdebug to create a trace of the code. Run the code with execution traces and show_mem_delta.

link|flag
But watch out... the generated trace files will be ENORMOUS. The first time I ran an xdebug trace on a Zend Framework app it took a loooong time to run and generated a multi GB (not kb or MB... GB) sized file. Just be aware of this. – gaoshan88 May 11 at 21:07
Yeah, it's pretty heavy .. GB's sounds a bit much though - unless you had a large script. Maybe try to just process a couple of rows (Should be enough to identify the leak). Also, don't install the xdebug extension on the production server. – troelskn May 11 at 22:16
vote up 0 vote down

You could have a look at the Memory Manager functions to help narrow things down, that article has a pretty decent tutorial of using them to locate a leak.

link|flag
vote up 0 vote down

There are several possible points of memory leaking in php:

  • php itself
  • php extension
  • php library you use
  • your php code

It is quite hard to find and fix the first 3 without deep reverse engineering or php source code knowledge. For the last one you can use binary search for memory leaking code with memory_get_usage

link|flag
2  
Your answer is about as general it could have gotten – TravisO May 11 at 21:33
vote up 0 vote down

If what you say about PHP only doing GC after a function is true, you could wrap the loop's contents inside a function as a workaround/experiment.

link|flag
I tried that but with no success. I can't seem to find a concrete spec/documentation for PHP's GC so I'm not sure what to believe as fact. – Mike B May 12 at 12:50
vote up 1 vote down

I noticed one time in an old script that PHP would maintain the "as" variable as in scope even after my foreach loop. For example,

foreach($users as $user){
  $user->doSomething();
}
var_dump($user); // would output the data from the last $user

I'm not sure if future PHP versions fixed this or not since I've seen it. If this is the case, you could unset($user) after the doSomething() line to clear it from memory. YMMV.

link|flag

Your Answer

Get an OpenID
or

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