Alto uso da CPU e trava aleatoriamente com o HHVM

1

Estou usando phpbb no Centos 7 com 512mb de ram e 1 core.

E eu estou tendo aleatoriamente trava e alto uso cpu quando recebo algum url da minha instalação phpbb limpa.

Este é o meu arquivo server.hdf:

idFile = /run/hhvm.pid

Server {
    Port = 9000
    Type = fastcgi
    SourceRoot = /home/deploy/www/mypage
    ExposeHPHP = 0
}

Log {
    Level = Error
    UseLogFile = true
    File = /var/log/hhvm/hhvm-error.log
    Access {
        * {
            File = /var/log/hhvm/hhvm-access.log
            Format = %h %l %u %t \"%r\" %>s %b
        }
    }
}

Repo {
    Central {
        Path = /var/log/hhvm/.hhvm.hhbc
    }
}

E este é o meu nginx.conf configurações php:

index index.php index.html index.htm;

try_files $uri $uri/ /index.php;

location ~ .(hh|php)$ {
    fastcgi_keep_conn on;
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
}

Estou usando o HipHop VM 3.8.0-dev (rel) com o Nginx 1.8.0 e o mariadb, alguma pista?

Tudo parece bem em arquivos de log: (

Obrigado!

    
por Jeremy 12.05.2015 / 11:16

0 respostas