作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Symfony2(兔子消费者)中有一个长时间运行的进程,并且我使用 MonologBundle 进行日志记录。这些行会立即记录下来,但我注意到该进程的内存消耗随着每次迭代而增加,几分钟后达到超过 1GB。
脚本运行时使用:--env=prod
所以我做了一个较小的测试:
// taken from my symfony test command
$logger = $this->getContainer()->get('logger');
while (true){
$logger->debug("line one");
$logger->debug("line two");
$logger->debug("line three");
var_dump($logger);
}
这是约 10k 次迭代后的 var_dump 内容:
class Symfony\Bridge\Monolog\Logger#3 (3) {
protected $name =>
string(3) "app"
protected $handlers =>
array(1) {
[0] =>
class Monolog\Handler\FingersCrossedHandler#132 (11) {
protected $handler =>
class Monolog\Handler\StreamHandler#133 (9) {
...
}
protected $activationStrategy =>
class Monolog\Handler\FingersCrossed\ErrorLevelActivationStrategy#134 (1) {
...
}
protected $buffering =>
bool(true)
protected $bufferSize =>
int(0)
protected $buffer =>
array(100) {
...
}
protected $stopBuffering =>
bool(true)
protected $passthruLevel =>
NULL
protected $level =>
int(100)
protected $bubble =>
bool(true)
protected $formatter =>
NULL
protected $processors =>
array(0) {
...
}
}
}
protected $processors =>
array(0) {
}
}
Monolog 捆绑设置:
monolog:
handlers:
main:
type: fingers_crossed
action_level: error
handler: nested
buffer_size: 100
nested:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.log"
level: debug
buffer_size: 100
framework:
profiler:
only_exceptions: false
enabled: false
collect: false
缓冲区中的日志条目没有超过buffer_limit,但脚本的内存使用量仍然增加。
有什么想法吗?谢谢
PS:我用简单的独白重复了测试,没有出现内存问题。
最佳答案
这是fingers_crossed
预期的行为。它将日志条目存储在内存中,直到发生 action_level
事件。将其更改为 stream
或其他一些非缓冲处理程序。
关于symfony - MonologBundle 内存泄漏(?),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29415098/
我是一名优秀的程序员,十分优秀!