Page MenuHomePhabricator

Unrecoverable Error on fetching feed
Closed, ResolvedPublic

Description

Generally happens with feed query, even when I try to view a user's profile. Is there something I can do speed up queries, we use phabricator quite heavily. Will appreciate if you could share any configuration change to increase the execution limit as work around.

>>> UNRECOVERABLE FATAL ERROR <<<

Maximum execution time of 30 seconds exceeded

/var/www/html/taskman/libphutil/src/utils/utf8.php:39


┻━┻ ︵ ¯\_(ツ)_/¯ ︵ ┻━┻

Event Timeline

vnykmshr assigned this task to epriestley.
vnykmshr raised the priority of this task from to Normal.
vnykmshr updated the task description. (Show Details)
vnykmshr added a subscriber: vnykmshr.

You can set max_execution_time in your PHP config to change the default value. See:

http://www.php.net/manual/en/info.configuration.php#ini.max-execution-time

Do you have a full stack trace for this exception? I'm not sure if you'll get one or not, but you should check your apache/nginx error log (often /var/log/httpd/error.log or similar) and see if you can find one.

Particularly the fact that this is occuring in utf8.php probably indicates that this is a UTF8 processing issue with invalid UTF8, not a query size issue.

I don't have the error trace, but will check httpd logs and report the trace if I find any.

Closing this out since we need more information to fix it.