Page MenuHomePhabricator

PHP Fatal Error from line 624 of /srv/mediawiki/1.41/vendor/wikimedia/parsoid/src/Config/Env.php: Allowed memory size of 1468006400 bytes exhausted
Open, Needs TriagePublic

Description

Hi, I'm seeing the below from the logs:

PHP Fatal Error from line 624 of /srv/mediawiki/1.41/vendor/wikimedia/parsoid/src/Config/Env.php: Allowed memory size of 1468006400 bytes exhausted

We are running MediaWiki 1.41 and php 8.2 on Debian Bookworm.

Event Timeline

I don't have any reproduction steps :/

Can't really do anything about this w/o more info. That line in REL1_41 is:

				$str = $pageConfig->getTitle() . $str;

inside Env::resolveTitle(), so this seems like a generic allocation triggered by a string concatenation which is pushing PHP over its memory limit, it doesn't really give us a lot of insight into the root cause of that memory consumption.