dragon4808 2016-03-13 23:28
浏览 54
已采纳

内存泄漏symfony和monolog和控制台

I spent the last 2 hours trying to find my memory leak.

  • Optimized the doctrine bulk processing
  • Optimized my detach and all that doctrine annotation stuff
  • Optimized the SQL Logger
  • The script was still leaking
  • Decided to comment out the logging because there wasn't much I could do anyway

Turns out that

  • Over 40k iterations without logging at each n but at modulus 50, start mem: 28 mb end mem: 30mb
  • Over 5k iterations with logging at each n, no modulus, start mem:28mb, end mem 38mb.

Example

 # this leaks
 # start mem: 28 mb end mem: 38mb, n = 5k
 foreach ($this->queryData->iterate() as $j => $data):
            declare(ticks = 1);
            self::$currentAd++;
            $this->em->detach($data[0]);
            $this->logger->info(LogUtility::getMemoryUsage() . " (" . self::$currentAd .")");
            if(self::$currentAd === 40000 ):
                break(2);
            endif;
  endforeach;

 # this doesn't leak
 # start mem: 28 mb end mem: 30mb, n = 40k
 foreach ($this->queryData->iterate() as $j => $data):
            declare(ticks = 1);
            self::$currentAd++;
            $this->em->detach($data[0]);
            if(self::$currentAd % 50 == 0):
                  $this->logger->info(LogUtility::getMemoryUsage() . " (" . self::$currentAd .")");
            endif;
            if(self::$currentAd === 40000 ):
                break(2);
            endif;
  endforeach;

my monolog config:

 handlers:
    test:
        type:   stream
        path:   "%kernel.logs_dir%/immobilier/test.log"
        level:  debug
        channels: test
  console:
        type:   console
        bubble: false
        verbosity_levels:
            VERBOSITY_VERBOSE: INFO
            VERBOSITY_VERY_VERBOSE: DEBUG
        channels: [test]

Any suggestions to correct this ?

  • 写回答

2条回答 默认 最新

  • doushanmo7024 2016-03-14 00:05
    关注

    Found the solution. I can't tell you the exact reasons why such memory leak happen, however according to this; Adding the --no-debug option to your command solves the problem. It actually did and it even reduced the memory by 2mb. Cheers !

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!