Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Symfony2 app always has a 3 second wait between kernel.request and kernel.controller

I'm trying to build this symfony2 application in a docker container with PHP7 and nginx with FastCGI PM.

Every time the application executes I get this mysterious 3 seconds of unaccountable execution time between the kernel.request and the kernel.controller.

You can see the odd request timeline in this screenshot: enter image description here

This application doesn't have this behavior when I run it on my typical php5.5+apache2 config on my vagrant machine, so I'm not sure if it's something with my PHP config or PHP7, but I'm wondering if someone has seen something like this before and has any idea what might be happening here?

Edit here's the docker_compose config:

cafe:
  build: /opt/cafe
  ports: 
      - "9981:80"
  environment: 
      - "CAFE_CACHE_DIR=/tmp/cafe/cache"
      - "CAFE_LOG_DIR=/var/log/cafe"
      - "SF_ENV=local"
  volumes: 
      - /var/log/php7:/var/log/php7
      - /var/log/nginx:/var/log/nginx
like image 970
Jesse Greathouse Avatar asked Jan 22 '26 16:01

Jesse Greathouse


2 Answers

In case anyone is curious, or having the same issue, I finally found the problem and it was not what I expected. When I was setting up this project for PHP7 I couldn't use the standard linux distro that I normally would have, I had to add all the configuration files myself.

After painstaking analyzing my code, I found out that the exact line, that was stalling, was a place I was running get_browser() (http://php.net/manual/en/function.get-browser.php) in a kernel.controller listener. get_browser() was having a performance problem because of the browscap.ini file I used when setting up my php configuration in the container. I guess, for some reason, the browscap.ini file I used was having parsing issues or something. I changed it out with the lite_php_browscap.ini version and now it runs very very quick with no problem.

enter image description here

like image 151
Jesse Greathouse Avatar answered Jan 24 '26 14:01

Jesse Greathouse


Also have been busy with Symfony performance within a box lately. The following quite recent article was the best recap I could find about it:

http://by-examples.net/2014/12/09/symfony2-on-vagrant.html

like image 21
Rvanlaak Avatar answered Jan 24 '26 13:01

Rvanlaak



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!