Page MenuHomePhabricator

MimeAnalyzer throws `ValueError: Path cannot be empty` on PHP 8.1
Closed, ResolvedPublicBUG REPORT

Description

Steps to replicate the issue (include links if applicable):

Build commons wiki and normal wiki on 1.39 or 1.40.
Install php 8 or 8.1
Installed and configure TimedMediaHandler
Upload and file into commons wiki and link to that file from the test wiki changing the thumbnail size
Issue occurs I believe because the thumbnail does not exist initially

Looks similar to:
T272328: MimeAnalyzer throws `ValueError: Path cannot be empty` on PHP 8.0

What happens?:

[900aa3b3d7808d662339a70a] /Test ValueError: Path cannot be empty

Backtrace:

from /var/lib/mediawiki/includes/libs/mime/MimeAnalyzer.php(552)
#0 /var/lib/mediawiki/includes/libs/mime/MimeAnalyzer.php(552): fopen()
#1 /var/lib/mediawiki/includes/libs/mime/MimeAnalyzer.php(523): MimeAnalyzer->doGuessMimeType()
#2 /var/lib/mediawiki/includes/filerepo/file/UnregisteredLocalFile.php(164): MimeAnalyzer->guessMimeType()
#3 /var/lib/mediawiki/includes/filerepo/file/File.php(1544): UnregisteredLocalFile->getMimeType()
#4 /var/lib/mediawiki/extensions/TimedMediaHandler/includes/TimedMediaThumbnail.php(145): File->getHandler()
#5 /var/lib/mediawiki/extensions/TimedMediaHandler/includes/TimedMediaThumbnail.php(28): MediaWiki\TimedMediaHandler\TimedMediaThumbnail::resizeThumb()
#6 /var/lib/mediawiki/extensions/TimedMediaHandler/includes/TimedMediaHandler.php(438): MediaWiki\TimedMediaHandler\TimedMediaThumbnail::get()
#7 /var/lib/mediawiki/includes/filerepo/file/File.php(1317): MediaWiki\TimedMediaHandler\TimedMediaHandler->doTransform()
#8 /var/lib/mediawiki/includes/filerepo/file/File.php(1264): File->generateAndSaveThumb()
#9 /var/lib/mediawiki/includes/Linker.php(670): File->transform()
#10 /var/lib/mediawiki/includes/Linker.php(424): Linker::makeThumbLink2()
#11 /var/lib/mediawiki/includes/parser/Parser.php(5558): Linker::makeImageLink()
#12 /var/lib/mediawiki/includes/parser/Parser.php(2715): Parser->makeImage()
#13 /var/lib/mediawiki/includes/parser/Parser.php(2458): Parser->handleInternalLinks2()
#14 /var/lib/mediawiki/includes/parser/Parser.php(1639): Parser->handleInternalLinks()
#15 /var/lib/mediawiki/includes/parser/Parser.php(724): Parser->internalParse()
#16 /var/lib/mediawiki/includes/content/WikitextContentHandler.php(301): Parser->parse()
#17 /var/lib/mediawiki/includes/content/ContentHandler.php(1721): WikitextContentHandler->fillParserOutput()
#18 /var/lib/mediawiki/includes/content/Renderer/ContentRenderer.php(47): ContentHandler->getParserOutput()
#19 /var/lib/mediawiki/includes/Revision/RenderedRevision.php(266): MediaWiki\Content\Renderer\ContentRenderer->getParserOutput()
#20 /var/lib/mediawiki/includes/Revision/RenderedRevision.php(237): MediaWiki\Revision\RenderedRevision->getSlotParserOutputUncached()
#21 /var/lib/mediawiki/includes/Revision/RevisionRenderer.php(221): MediaWiki\Revision\RenderedRevision->getSlotParserOutput()
#22 /var/lib/mediawiki/includes/Revision/RevisionRenderer.php(158): MediaWiki\Revision\RevisionRenderer->combineSlotOutput()
#23 [internal function]: MediaWiki\Revision\RevisionRenderer->MediaWiki\Revision\{closure}()
#24 /var/lib/mediawiki/includes/Revision/RenderedRevision.php(199): call_user_func()
#25 /var/lib/mediawiki/includes/poolcounter/PoolWorkArticleView.php(91): MediaWiki\Revision\RenderedRevision->getRevisionParserOutput()
#26 /var/lib/mediawiki/includes/poolcounter/PoolWorkArticleViewCurrent.php(97): PoolWorkArticleView->renderRevision()
#27 /var/lib/mediawiki/includes/poolcounter/PoolCounterWork.php(162): PoolWorkArticleViewCurrent->doWork()
#28 /var/lib/mediawiki/includes/page/ParserOutputAccess.php(299): PoolCounterWork->execute()
#29 /var/lib/mediawiki/includes/page/Article.php(714): MediaWiki\Page\ParserOutputAccess->getParserOutput()
#30 /var/lib/mediawiki/includes/page/Article.php(528): Article->generateContentOutput()
#31 /var/lib/mediawiki/includes/actions/ViewAction.php(78): Article->view()
#32 /var/lib/mediawiki/includes/MediaWiki.php(542): ViewAction->show()
#33 /var/lib/mediawiki/includes/MediaWiki.php(322): MediaWiki->performAction()
#34 /var/lib/mediawiki/includes/MediaWiki.php(904): MediaWiki->performRequest()
#35 /var/lib/mediawiki/includes/MediaWiki.php(562): MediaWiki->main()
#36 /var/lib/mediawiki/index.php(50): MediaWiki->run()
#37 /var/lib/mediawiki/index.php(46): wfIndexMain()
#38 {main}

What should have happened instead?:
Video thumbnail should have been created

Software version (skip for WMF-hosted wikis like Wikipedia):
Mediawiki: 1.39.1 or 1.40.0-alpha (3534847)
PHP 8.1

Other information (browser name/version, screenshots, etc.):

Issue is not present on PHP 7.4.

Event Timeline

Restricted Application added a subscriber: Aklapper. · View Herald Transcript

In general, this means that the path that it was trying to open was empty. You can't open what doesn't exist. So the first question is, why is it attempting to open a non-existing path.

What is the name of the file you are trying to upload
What is your $wgUploadDirectory ?
What is your operating system ?

I have an internal alpine docker image built for mediawiki.
This issue only appears in our build after updating php to 8.1.
If I go back to php 7.4 the issue disappears.
$wgUploadDirectory is /wiki-shared/stagingwiki8/storage/images/

How could the issue be the path for $wgUploadDirectory when it only affects videos (never affects images) and only videos on commons wiki.

I don't have any issue uploading a file or video to the wiki.
I don't have any issue linking to any file or video and specifying a smaller thumbnail size:
However if the file is on a commons wiki the issue presents only when specifying a smaller thumbnail size:

Works:

[[File:Videoonwikipedia.ogv]]

Induces error above:

[[File:Videoonwikipedia.ogv|200px]]

Do you have your own Commons wiki, or do you mean the InstantCommons feature ?

In general in this case, I would consider setting up debug logging like so: https://www.mediawiki.org/wiki/Manual:How_to_debug#Setting_up_a_debug_log_file

And then see if you can figure out what the ffmpeg and/or convert commands are just before this exception occurs
One of the main differences between TMH and images being processed, is that it has an additional directory for transcoded derivates in the file configuration, next to the one for thumbnails. Perhaps there is something wrong in that area. Difficult to say.

This looks very similar to:
https://phabricator.wikimedia.org/T272328

I'm pretty sure this could be easily reproduced.

The exact part of the debug log where we are seeing issues is:

[DBConnection] Wikimedia\Rdbms\LoadBalancer::getForeignConnection: opened new connection for foreignInUse/0/commons
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getForeignConnection: reusing connection foreignInUse/0/commons
[DBConnection] Wikimedia\Rdbms\LoadBalancer::reuseConnectionInternal: reference count for 0/commons reduced to 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::reuseConnectionInternal: freed connection 0/commons
[objectcache] RedisBagOStuff debug: get(WANCache:global:filerepo-file:stagingwiki8:d140a8b73f6d4c1a499f528d46cefd8874752127|#|v) on /run/redis.sock: success
[objectcache] getWithSetCallback(global:filerepo-file-redirect:stagingwiki8:f673e47feabcc1056b0e802811ca5bc1): process cache hit
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getForeignConnection: reusing free connection foreignInUse/0/commons
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getForeignConnection: reusing connection foreignInUse/0/commons
[DBConnection] Wikimedia\Rdbms\LoadBalancer::reuseConnectionInternal: reference count for 0/commons reduced to 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::reuseConnectionInternal: freed connection 0/commons
File::transform: Doing stat for mwstore://commons-backend/commons-thumb/f/f6/Videoonwikipedia.ogv/200px--Videoonwikipedia.ogv.jpg
[FileOperation] FileBackendStore::ingestFreshFileStats: File mwstore://commons-backend/commons-thumb/f/f6/Videoonwikipedia.ogv/200px--Videoonwikipedia.ogv.jpg does not exist
Creating video thumbnail at /tmp/transform_11698c3a41b6.jpg
File::transform: Doing stat for mwstore://commons-backend/commons-thumb/f/f6/Videoonwikipedia.ogv/720px-seek=121-Videoonwikipedia.ogv.jpg
[Mime] MimeAnalyzer::guessMimeType: WARNING: use of the $ext parameter is deprecated. Use improveTypeFromExtension($mime, $ext) instead.
[exception] [3b665178c0435d2cb3464978] /User:Caleb_Cooper/sandbox ValueError: Path cannot be empty
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0

Here is the full log:

[wikidebug] wikiRequestIP: 10.16.163.208, wikiRequestSafe: false, wikiTrustedApiClients count: 0, wikiDebugIPs: None (debugging on for all clients)
[wikiconfig] Loading custom config from: /wiki-shared/stagingwiki8/LocalSettings_2_pre.php
[wikiconfig] Loading extended-conf from: /var/lib/mediawiki/LocalSettings_3_groups_and_ns.php
[wikiconfig] Loading extended-conf from: /var/lib/mediawiki/LocalSettings_6_commons.php
[wikiconfig] Loading custom config from: /wiki-shared/stagingwiki8/LocalSettings_11_allwikis.php
[wikiconfig] Loading custom config from: /wiki-shared/stagingwiki8/LocalSettings_12_post.php
Start request GET /User:Caleb_Cooper/sandbox
IP: 172.18.0.2
HTTP HEADERS:
X-REAL-IP: 10.16.163.208
X-FORWARDED-SERVER: 773c8331151a
X-FORWARDED-PROTO: https
X-FORWARDED-PORT: 443
X-FORWARDED-HOST: stagingwiki8.devops.supportlabs.dell
X-FORWARDED-FOR: 10.16.163.208
UPGRADE-INSECURE-REQUESTS: 1
SEC-FETCH-USER: ?1
SEC-FETCH-SITE: same-origin
SEC-FETCH-MODE: navigate
SEC-FETCH-DEST: document
SEC-CH-UA-PLATFORM: "Windows"
SEC-CH-UA-MOBILE: ?0
SEC-CH-UA: "Chromium";v="110", "Not A(Brand";v="24", "Google Chrome";v="110"
REFERER: https://stagingwiki8.devops.supportlabs.dell/index.php?title=User:Caleb_Cooper/sandbox&action=edit
COOKIE: stagingwiki8UserName=Caleb%20Cooper; stagingwiki8mwuser-sessionId=a6d538edfbed9cf03e15; metrolook-nav-p-categorytree-portlet=false; metrolook-nav-p-Document_Control=false; metrolook-nav-p-Sites=false; stagingwiki8_session=350eol1h7ku8inrc6ni1cul37tt9mu02; stagingwiki8UserID=136; stagingwiki8Token=186c54d855c037aff60f5919c1f616b5; VEE=wikitext; mwext-jsbreadcrumbs=%5B%7B%22url%22%3A%22%2Findex.php%3Ftitle%3DMain_Page%26stable%3D0%26redirect%3Dno%22%2C%22title%22%3A%22Main%20Page%22%2C%22action%22%3A%22%22%2C%22siteName%22%3A%22stagingwiki8%22%7D%2C%7B%22url%22%3A%22%2Findex.php%3Ftitle%3DMain_Page%26stable%3D1%22%2C%22title%22%3A%22Main%20Page%22%2C%22action%22%3A%22%22%2C%22siteName%22%3A%22stagingwiki8%22%7D%2C%7B%22url%22%3A%22%2FTest%22%2C%22title%22%3A%22Testing%20Times%22%2C%22action%22%3A%22%22%2C%22siteName%22%3A%22stagingwiki8%22%7D%2C%7B%22url%22%3A%22%2FUser%3ACaleb_Cooper%2Fsandbox%22%2C%22title%22%3A%22User%3ACaleb%20Cooper%2Fsandbox%22%2C%22action%22%3A%22%22%2C%22siteName%22%3A%22stagingwiki8%22%7D%2C%7B%22url%22%3A%22%2FMain_Page%22%2C%22title%22%3A%22Main%20Page%22%2C%22action%22%3A%22%22%2C%22siteName%22%3A%22stagingwiki8%22%7D%5D
CACHE-CONTROL: max-age=0
ACCEPT-LANGUAGE: en-IE,en-US;q=0.9,en;q=0.8
ACCEPT-ENCODING: gzip, deflate, br
ACCEPT: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7
USER-AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36
HOST: stagingwiki8.devops.supportlabs.dell
CONTENT-LENGTH:
CONTENT-TYPE:
(end headers)
[session] SessionManager using store RedisBagOStuff
[localisation] LocalisationCache using store LCStoreCDB
[objectcache] MainWANObjectCache using store RedisBagOStuff
[objectcache] RedisBagOStuff debug: get(WANCache:global:user:id:stagingwiki8:136|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(stagingwiki8:MWSession:350eol1h7ku8inrc6ni1cul37tt9mu02) on /run/redis.sock: success
[DBReplication] Wikimedia\Rdbms\LBFactory::getChronologyProtector: request info {
"IPAddress": "172.18.0.2",
"UserAgent": "Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/110.0.0.0 Safari\/537.36",
"ChronologyProtection": false,
"ChronologyPositionIndex": 0,
"ChronologyClientId": false
}
[DBReplication] ChronologyProtector using store APCUBagOStuff
[DBReplication] ChronologyProtector fetching positions for 5866bf84aa2a10a7a38a320cea96a5eb
[DBReplication] found position data with index 1
[DBReplication] Wikimedia\Rdbms\ChronologyProtector::applySessionReplicationPosition: s1 (wiki-mariadb:3306) has no position
[DBConnection] Wikimedia\Rdbms\LoadBalancer::lazyLoadReplicationPositions: executed chronology callback.
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: opened new connection for local/0
[SQLBagOStuff] MainObjectStash using store ReplicatedBagOStuff
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:page-content-model:18606|#|v) on /run/redis.sock: success
[ContentHandler] Registered handler for wikitext: WikitextContentHandler
[objectcache] getWithSetCallback(stagingwiki8:page-content-model:18606): process cache hit
[objectcache] getWithSetCallback(stagingwiki8:page-content-model:18606): process cache hit
[UserOptionsManager] Loading options from database
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[MessageCache] MessageCache using store RedisBagOStuff
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages:en:hash:v1|#|v,WANCache:stagingwiki8:messages:en|#|t) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(stagingwiki8:messages:en) on /run/redis.sock: success
[MessageCache] MessageCache::loadUnguarded: Loading en... local cache is empty, got from global cache
ParserFactory: using default preprocessor
ContextSource::getContext (MediaWiki\Skins\Vector\SkinVector22): called and $context is null. Using RequestContext::getMain()
[objectcache] getWithSetCallback(stagingwiki8:page-content-model:18606): process cache hit
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:page-restrictions:v1:977:18606|#|v) on /run/redis.sock: success
[ParserCache] Creating ParserCache instance for pcache
[ParserCache] Creating RevisionOutputCache instance for rcache
[objectcache] getWithSetCallback(stagingwiki8:page-content-model:18606): process cache hit
Unstubbing $wgLang on call of $wgLang::getDatePreferenceMigrationMap from ParserOptions::initDateFormat
[objectcache] RedisBagOStuff debug: get(stagingwiki8:pcache:idoptions:977) on /run/redis.sock: success
[objectcache] getWithSetCallback(stagingwiki8:page-content-model:18606): process cache hit
[ParserCache] metadata key expired
[objectcache] RedisBagOStuff debug: get(WANCache:global:revision-row-1.29:stagingwiki8:977:18606|#|v) on /run/redis.sock: success
Article::generateContentOutput: doing uncached parse
[objectcache] getWithSetCallback(stagingwiki8:page-content-model:18606): process cache hit
[objectcache] RedisBagOStuff debug: get(stagingwiki8:pcache:idoptions:977) on /run/redis.sock: success
[ParserCache] Parser cache options found
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[objectcache] RedisBagOStuff debug: get(WANCache:global:NameTableSqlStore:slot_roles:stagingwiki8|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:global:NameTableSqlStore:content_models:stagingwiki8|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:global:SqlBlobStore-blob:stagingwiki8:tt%3A17761|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:global:filerepo-file:stagingwiki8:d140a8b73f6d4c1a499f528d46cefd8874752127|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:global:filerepo-file-redirect:stagingwiki8:f673e47feabcc1056b0e802811ca5bc1|#|v) on /run/redis.sock: success
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getForeignConnection: opened new connection for foreignInUse/0/commons
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getForeignConnection: reusing connection foreignInUse/0/commons
[DBConnection] Wikimedia\Rdbms\LoadBalancer::reuseConnectionInternal: reference count for 0/commons reduced to 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::reuseConnectionInternal: freed connection 0/commons
[objectcache] RedisBagOStuff debug: get(WANCache:global:filerepo-file:stagingwiki8:d140a8b73f6d4c1a499f528d46cefd8874752127|#|v) on /run/redis.sock: success
[objectcache] getWithSetCallback(global:filerepo-file-redirect:stagingwiki8:f673e47feabcc1056b0e802811ca5bc1): process cache hit
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getForeignConnection: reusing free connection foreignInUse/0/commons
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getForeignConnection: reusing connection foreignInUse/0/commons
[DBConnection] Wikimedia\Rdbms\LoadBalancer::reuseConnectionInternal: reference count for 0/commons reduced to 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::reuseConnectionInternal: freed connection 0/commons
File::transform: Doing stat for mwstore://commons-backend/commons-thumb/f/f6/Videoonwikipedia.ogv/200px--Videoonwikipedia.ogv.jpg
[FileOperation] FileBackendStore::ingestFreshFileStats: File mwstore://commons-backend/commons-thumb/f/f6/Videoonwikipedia.ogv/200px--Videoonwikipedia.ogv.jpg does not exist
Creating video thumbnail at /tmp/transform_11698c3a41b6.jpg
File::transform: Doing stat for mwstore://commons-backend/commons-thumb/f/f6/Videoonwikipedia.ogv/720px-seek=121-Videoonwikipedia.ogv.jpg
[Mime] MimeAnalyzer::guessMimeType: WARNING: use of the $ext parameter is deprecated. Use improveTypeFromExtension($mime, $ext) instead.
[exception] [3b665178c0435d2cb3464978] /User:Caleb_Cooper/sandbox ValueError: Path cannot be empty
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Nstab-user_talk|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:View-view|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Vector-2022-view-view|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Vector-2022-view-edit|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Vector-2022-view-history|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Vector-2022-action-delete|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Vector-2022-action-move|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Vector-2022-action-protect|#|v) on /run/redis.sock: success
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Special%3AContributionScores|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Contribution_scores|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Help%3AContents|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Special%3AAllPages|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:All_Pages|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:New_Pages|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Most_Viewed|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Draft|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Special%3AUnreviewedPages|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Not_Reviewed|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Special%3APendingChanges|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Pending_Changes|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Special%3AReviewedPages|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Reviewed_Pages|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Https%3A//commons.devops.supportlabs.dell|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Commons|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Https%3A//stagingwiki5.devops.supportlabs.dell|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Labwiki|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Https%3A//stagingwiki6.devops.supportlabs.dell|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Eqliki|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Https%3A//stagingwiki7.devops.supportlabs.dell|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Compiki|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Https%3A//stagingwiki8.devops.supportlabs.dell|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Powerstorewiki|#|v) on /run/redis.sock: success
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[objectcache] getWithSetCallback(global:user:id:stagingwiki8:136): process cache hit
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-p-Navigation|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-n-Contribution-scores|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Accesskey-n-Contribution-scores|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-n-Help|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Accesskey-n-Help|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-p-categorytree-portlet|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-p-Document_Control|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-n-All-Pages|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Accesskey-n-All-Pages|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-n-New-Pages|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Accesskey-n-New-Pages|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-n-Most-Viewed|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Accesskey-n-Most-Viewed|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-n-Draft|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Accesskey-n-Draft|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-n-Not-Reviewed|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Accesskey-n-Not-Reviewed|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-n-Pending-Changes|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Accesskey-n-Pending-Changes|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-n-Reviewed-Pages|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Accesskey-n-Reviewed-Pages|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Document_Control|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-p-USER-SIDEBAR|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:USER-SIDEBAR|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-p-GROUP-SIDEBAR|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:GROUP-SIDEBAR|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-t-log|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Accesskey-t-log|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-t-blockip|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Accesskey-t-blockip|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-t-userrights|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Accesskey-t-userrights|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-p-Sites|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-n-commons|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Accesskey-n-commons|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-n-labwiki|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Accesskey-n-labwiki|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-n-eqliki|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Accesskey-n-eqliki|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-n-compiki|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Accesskey-n-compiki|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-n-powerstorewiki|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Accesskey-n-powerstorewiki|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Sites|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:User-interface-preferences|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:User-page|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-p-notifications|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Notifications|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-p-associated-pages|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Associated-pages|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-p-vector-user-menu-overflow|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Vector-user-menu-overflow|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-p-views-overflow|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-ca-more-view|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Accesskey-ca-more-view|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-ca-more-edit|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Accesskey-ca-more-edit|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-ca-more-history|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Accesskey-ca-more-history|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Tooltip-ca-more-unwatch|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Accesskey-ca-more-unwatch|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Views-overflow|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Namespacenotice-2|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Variantname-en|#|v) on /run/redis.sock: success
[objectcache] RedisBagOStuff debug: get(WANCache:global:resourceloader-titleinfo:stagingwiki8:980be6123eaedb26cd59da7f4e9a5a58643c5801|#|v,WANCache:global:resourceloader-titleinfo:stagingwiki8|#|t) on /run/redis.sock: success
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[objectcache] getWithSetCallback(global:user:id:stagingwiki8:136): process cache hit
[objectcache] RedisBagOStuff debug: get(WANCache:global:resourceloader-titleinfo:stagingwiki8:811316b510a83c85269d38874d1f45f3ec284093|#|v,WANCache:global:resourceloader-titleinfo:stagingwiki8|#|t) on /run/redis.sock: success
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[objectcache] getWithSetCallback(global:user:id:stagingwiki8:136): process cache hit
[objectcache] RedisBagOStuff debug: get(WANCache:stagingwiki8:messages-big:22ddabdb832696b383f14b719801e4d4:Vector-2022-action-addsection|#|v) on /run/redis.sock: success

EDIT: Corrected config and reproduced again and provided debug log. Confirmed only videos on commons wiki affected.

I've just built a much smaller LocalSettings.php with a minimal config to reproduce this:

stagingwiki8:/var/lib/mediawiki# cat LocalSettings.php 
<?php

######################################################################################################################################
# CORE
######################################################################################################################################


$wgSitename = "stagingwiki8";
$wgSecretKey = "xxx";
$wgUpgradeKey = "11640ab816b1bb22";

# Short URLs and Search Config
$wgScriptPath = "";
$wgArticlePath = "/$1";
$wgUsePathInfo = true;
$wgScriptExtension = ".php";
$wgUploadDirectory = "/wiki-shared/stagingwiki8/storage/images/";
$wgEnableUploads = true;

$wgServer = "http://stagingwiki8.devops.supportlabs.dell";


$wgResourceBasePath = $wgScriptPath;



######################################################################################################################################
# DATABASE
######################################################################################################################################


$wgDBtype = "mysql";
$wgDBserver = "wiki-mariadb";
$wgDBname = "stagingwiki8";
$wgDBuser = "wikisql";
$wgDBpassword = "xxx";
$wgDBprefix = "";
$wgDBTableOptions = "ENGINE=InnoDB, DEFAULT CHARSET=binary";
$wgDBmysql5 = false;


######################################################################################################################################
# GENERAL
######################################################################################################################################

// Skin
wfLoadSkin( 'Vector' );
$wgDefaultSkin='vector';


######################################################################################################################################
# Additional Mediawiki User Groups: tech-*
######################################################################################################################################


### Tech/Engineering Groups (CREATE)
$wgGroupPermissions['tech-L2'] = $wgGroupPermissions['user'];
$wgGroupPermissions['tech-L3'] = $wgGroupPermissions['user'];


######################################################################################################################################
# Custom Namespaces
######################################################################################################################################


define('NS_L2' , 3002);
define('NS_L2_TALK' , 3003);
define('NS_L3' , 3004);
define('NS_L3_TALK' , 3005);


$wgExtraNamespaces[NS_L2] = 'L2';
$wgExtraNamespaces[NS_L2_TALK] = 'L2 Talk';
$wgExtraNamespaces[NS_L3] = 'L3';
$wgExtraNamespaces[NS_L3_TALK] = 'L3 Talk';



######################################################################################################################################
# Lockdown
######################################################################################################################################

wfLoadExtension("Lockdown");

$wgGroupPermissions['*']['read'] = true;
$wgGroupPermissions['*']['edit'] = false;
$wgGroupPermissions['user']['read'] = true;
$wgGroupPermissions['user']['edit'] = true;

$wgNamespacePermissionLockdown[NS_L2]['*'] = [ 'tech-L2', 'tech-L3' ];
$wgNamespacePermissionLockdown[NS_L3]['*'] = [ 'tech-L3' ];


#####################################################################################################################################
# VisualEditor, Restbase and Parsoid
######################################################################################################################################


# VisualEditor
 wfLoadExtension('VisualEditor');
 $wgVisualEditorParsoidAutoConfig = false;
 $wgVisualEditorAllowLossySwitching = false;
 $wgVisualEditorFullRestbaseURL = 'https://stagingwiki8.devops.supportlabs.dell/stagingwiki8.devops.supportlabs.dell/';
 $wgVisualEditorRestbaseURL = 'http://localhost:7231/stagingwiki8.devops.supportlabs.dell/v1/page/html/';

 $wgVisualEditorNamespaces = array_merge($wgContentNamespaces, array( NS_TALK, NS_USER, NS_USER_TALK, NS_L2, NS_L2_TALK, NS_L3, NS_L3_TALK) );
 $wgVisualEditorAvailableNamespaces = array_fill_keys($wgVisualEditorNamespaces, true);


// load commons-configuration for use by other scripts
$commonsJsonFile = '/wiki-shared/stagingwiki8/commons.json';
$commonsJsonConfig = false;                                                                                                           
$commonsFirstRepoBaseUri = false;   // will be set to "https://foobar.acme.com" if Commons Repo-URL is enumerated
if (is_file($commonsJsonFile)) {                                                                                                      
  $testJson = @json_decode(file_get_contents($commonsJsonFile),true);
  if (is_array($testJson)) {
    $commonsJsonConfig = $testJson;
  } else {
    $thisWarn = 'JSON parsing error for file "'.$commonsJsonFile.'"';
    wfDebugLog( 'wikiconfig', $thisWarn );
    $wikiConfigWarnings[] = $thisWarn;   
  }                                                        
}
if (isset($commonsJsonConfig['repos'],$commonsJsonConfig['repos'][0],$commonsJsonConfig['repos'][0]['url']) && is_string($commonsJsonConfig['repos'][0]['url'])) {
  // try to extract first URL from first Repo, to be used by extensions that are commons-integrated
  $comps = explode('/',$commonsJsonConfig['repos'][0]['url']);
  if (count($comps) > 3) {                      
    $commonsFirstRepoBaseUri = $comps[0].'//'.$comps[2];
  }                           
}       

// commons.json is tested/read by LocalSettings.php
// valid json will be stored in array $commonsJsonConfig
if (is_array($commonsJsonConfig)) {

  $repoDefault = [
    'class' => 'ForeignDBViaLBRepo',
    'name' => 'otherwiki',
    'wiki' => 'otherwiki',
    'url' => "https://example.org/w/images",
    'directory' => '/path/to/uploads',
    'hashLevels' => 2, // This must be the same for the other family member
    'dbType' => $wgDBtype,
    'dbServer' => $wgDBserver,
    'dbUser' => $wgDBuser,
    'dbPassword' => $wgDBpassword,
    'dbFlags' => DBO_DEFAULT,
    'dbName' => 'mydb',
    'tablePrefix' => 'mw_',
    'hasSharedCache' => false,
    'descBaseUrl' => 'https://example.org/wiki/File:',
    'fetchDescription' => false
  ];

  $confReady = (isset($commonsJsonConfig,$commonsJsonConfig['repos'],$commonsJsonConfig['repos'][0]));
  if ($confReady) {
    $finalRepos = array();
    foreach ($commonsJsonConfig['repos'] as $rid=>$repo) {

      if (isset($repo['class'],$repo['name'],$repo['url'],$repo['directory'])) {
        $newRepo = $repoDefault;
        foreach ($repo as $rattr=>$rval) {
          if (is_string($rval)) {
            if (!strstr($rval,'%inherit-default%')) { $newRepo[$rattr] = $rval; }
          } else {
            $newRepo[$rattr] = $rval;
          }
        }
        $wgForeignFileRepos[] = $newRepo;
      } else {
        $thisWarn = 'JSON file "'.$commonsJsonFile.'" detected but repo #'.$rid.' is missing some required-keys.';
        wfDebugLog( 'wikiconfig', $thisWarn );
        $wikiConfigWarnings[] = $thisWarn;
      }
    }
  } else {
    $thisWarn = 'JSON file "'.$commonsJsonFile.'" detected but no "repos" array found within.';
    wfDebugLog( 'wikiconfig', $thisWarn );
    $wikiConfigWarnings[] = $thisWarn;
  }
}

# Timed Media Handler
 wfLoadExtension( 'TimedMediaHandler' );
 // overwrite enabling of local TimedText namespace
 $wgEnableLocalTimedText = true;

 // enable transcoding on all wikis that allow uploads
 $wgEnableTranscode = false;           
                                 
 $wgOggThumbLocation = false; // use ffmpeg for performance

 $wgMinimumVideoPlayerSize = 200;
                                        
 $wgTmhWebPlayer = 'videojs';       
 #$wgTmhWebPlayer = 'mwembed';

 $wgTmhEnableMp3Uploads = true;
                                     
 // If mp4 source assets can be ingested:
 $wgTmhEnableMp4Uploads = true;

 $wgTmhSoundfontLocation = "/usr/share/sounds/sf2/FluidR3_GM.sf2";
 $wgTmhFluidsynthLocation = "/usr/bin/fluidsynth";
 $wgFFmpegLocation = '/usr/local/bin/ffmpeg';
 $wgFFprobeLocation = '/usr/local/bin/ffprobe';   



### Debug
$wgDebugLogFile = "/wiki-shared/stagingwiki8/logs/mediawiki-debug.log";
$wgShowDebug = true;         
$wgShowExceptionDetails = true;
$wgResourceLoaderDebug = true;
$wgDebugDumpSql = true;                                    
$wgDebugToolbar = true;
$wgDebugLogGroups = array(                                  
        'resourceloader' => '/wiki-shared/stagingwiki8/logs/mediawiki-debug.log',
        'exception' => '/wiki-shared/stagingwiki8/logs/mediawiki-debug.log',
        'error' => '/wiki-shared/stagingwiki8/logs/mediawiki-debug.log',
        'ratelimit' => '/wiki-shared/stagingwiki8/logs/mediawiki-debug.log',                                                          
        #'exception-json' => '/wiki-shared/stagingwiki8/logs/mediawiki-debug.log',
);                                                                                                                                    

if (is_array($wgForeignFileRepos)) { error_log("debugging wgForeignFileRepos: ".print_r($wgForeignFileRepos,true)); }
stagingwiki8:/var/lib/mediawiki#

This is reading the following commons.json:

{
  "repos": [
    {
      "class": "ForeignDBViaLBRepo",
      "name": "commons",
      "wiki": "commons",
      "url": "https://commons.devops.supportlabs.dell/images",
      "directory": "/wiki-shared/commons/storage/images",
      "hashLevels": 2,
      "dbType": "%inherit-default%",
      "dbServer": "%inherit-default%",
      "dbUser": "%inherit-default%",
      "dbPassword": "%inherit-default%",
      "dbFlags": "%inherit-default%",
      "dbName": "commons",
      "tablePrefix": "",
      "hasSharedCache": false,
      "descBaseUrl": "https://commons.devops.supportlabs.dell/File:",
      "fetchDescription": false
    }
  ]
}

I have confirmed in the debug log the ForeignDBViaLBRepo is being read correctly:

[20-Feb-2023 14:10:01 UTC] debugging wgForeignFileRepos: Array
(
    [0] => Array
        (
            [class] => ForeignDBViaLBRepo
            [name] => commons
            [wiki] => commons
            [url] => https://commons.devops.supportlabs.dell/images
            [directory] => /wiki-shared/commons/storage/images
            [hashLevels] => 2
            [dbType] => mysql
            [dbServer] => wiki-mariadb
            [dbUser] => wikisql
            [dbPassword] => 71071b9a78d9ba050b06834cfb46dfd97565111f
            [dbFlags] => 16
            [dbName] => commons
            [tablePrefix] => 
            [hasSharedCache] => 
            [descBaseUrl] => https://commons.devops.supportlabs.dell/File:
            [fetchDescription] => 
        )

)

I have enabled more debug:

Start request GET /User:Caleb_Cooper/sandbox
IP: 172.18.0.2
HTTP HEADERS:
X-REAL-IP: 10.18.181.185
X-FORWARDED-SERVER: 773c8331151a
X-FORWARDED-PROTO: https
X-FORWARDED-PORT: 443
X-FORWARDED-HOST: stagingwiki8.devops.supportlabs.dell
X-FORWARDED-FOR: 10.18.181.185
UPGRADE-INSECURE-REQUESTS: 1
SEC-FETCH-USER: ?1
SEC-FETCH-SITE: none
SEC-FETCH-MODE: navigate
SEC-FETCH-DEST: document
SEC-CH-UA-PLATFORM: "Windows"
SEC-CH-UA-MOBILE: ?0
SEC-CH-UA: "Chromium";v="110", "Not A(Brand";v="24", "Google Chrome";v="110"
COOKIE: stagingwiki8UserName=Caleb%20Cooper; stagingwiki8mwuser-sessionId=a6d538edfbed9cf03e15; metrolook-nav-p-categorytree-portlet=false; metrolook-nav-p-Document_Control=false; metrolook-nav-p-Sites=false; stagingwiki8UserID=136; stagingwiki8Token=186c54d855c037aff60f5919c1f616b5; VEE=wikitext; mwext-jsbreadcrumbs=%5B%7B%22url%22%3A%22%2Findex.php%3Ftitle%3DMain_Page%26stable%3D0%26redirect%3Dno%22%2C%22title%22%3A%22Main%20Page%22%2C%22action%22%3A%22%22%2C%22siteName%22%3A%22stagingwiki8%22%7D%2C%7B%22url%22%3A%22%2Findex.php%3Ftitle%3DMain_Page%26stable%3D1%22%2C%22title%22%3A%22Main%20Page%22%2C%22action%22%3A%22%22%2C%22siteName%22%3A%22stagingwiki8%22%7D%2C%7B%22url%22%3A%22%2FTest%22%2C%22title%22%3A%22Testing%20Times%22%2C%22action%22%3A%22%22%2C%22siteName%22%3A%22stagingwiki8%22%7D%2C%7B%22url%22%3A%22%2FUser%3ACaleb_Cooper%2Fsandbox%22%2C%22title%22%3A%22User%3ACaleb%20Cooper%2Fsandbox%22%2C%22action%22%3A%22%22%2C%22siteName%22%3A%22stagingwiki8%22%7D%2C%7B%22url%22%3A%22%2FMain_Page%22%2C%22title%22%3A%22Main%20Page%22%2C%22action%22%3A%22%22%2C%22siteName%22%3A%22stagingwiki8%22%7D%5D; stagingwiki8_session=uf8rfguqljrpk6s76krhmfcoksfqbr05
ACCEPT-LANGUAGE: en-IE,en-US;q=0.9,en;q=0.8
ACCEPT-ENCODING: gzip, deflate, br
ACCEPT: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7
USER-AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36
HOST: stagingwiki8.devops.supportlabs.dell
CONTENT-LENGTH:
CONTENT-TYPE:
(end headers)
[session] SessionManager using store SqlBagOStuff
[localisation] LocalisationCache using store LCStoreDB
[objectcache] MainWANObjectCache using store EmptyBagOStuff
[DBQuery] Wikimedia\Rdbms\DatabaseMysqlBase::open [0s] wiki-mariadb: SET group_concat_max_len = 262144, `sql_mode` = ''
[DBReplication] Cannot use ChronologyProtector with EmptyBagOStuff
[DBReplication] Wikimedia\Rdbms\LBFactory::getChronologyProtector: request info {
"IPAddress": "172.18.0.2",
"UserAgent": "Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/110.0.0.0 Safari\/537.36",
"ChronologyProtection": false,
"ChronologyPositionIndex": 0,
"ChronologyClientId": false
}
[DBConnection] Wikimedia\Rdbms\LoadBalancer::lazyLoadReplicationPositions: executed chronology callback.
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: opened new connection for local/0
[DBQuery] Wikimedia\Rdbms\DatabaseMysqlBase::serverIsReadOnly [0s] wiki-mariadb: SELECT @@GLOBAL.read_only AS Value
User: cache miss for user 136
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] Wikimedia\Rdbms\Database::beginIfImplied (User::loadFromDatabase) [0s] wiki-mariadb: BEGIN
[DBQuery] User::loadFromDatabase [0s] wiki-mariadb: SELECT user_id,user_name,user_real_name,user_email,user_touched,user_token,user_email_authenticated,user_email_token,user_email_token_expires,user_registration,user_editcount,user_actor.actor_id FROM `user` JOIN `actor` `user_actor` ON ((user_actor.actor_user = user_id)) WHERE user_id = 136 LIMIT 1
[objectcache] fetchOrRegenerate(global:user:id:stagingwiki8:136): miss, new value computed
[DBQuery] Wikimedia\Rdbms\DatabaseMysqlBase::open [0s] wiki-mariadb: SET group_concat_max_len = 262144, `sql_mode` = ''
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: opened new connection for localAutoCommit/0
[DBQuery] SqlBagOStuff::fetchBlobs [0s] wiki-mariadb: SELECT keyname,value,exptime FROM `objectcache` WHERE keyname = 'stagingwiki8:MWSession:uf8rfguqljrpk6s76krhmfcoksfqbr05' AND (exptime >= '20230221082314')
[SQLBagOStuff] SqlBagOStuff debug: SqlBagOStuff::fetchBlobs: retrieved stagingwiki8:MWSession:uf8rfguqljrpk6s76krhmfcoksfqbr05; expiry time is 20230221090745
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for localAutoCommit/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'deps' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0.001s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'list' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'preload' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'preload' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'namespaceGenderAliases' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 2 AND page_title = 'Caleb_Cooper/sandbox' LIMIT 1
[SQLBagOStuff] MainObjectStash using store ReplicatedBagOStuff
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] WikiPage::pageData [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_random,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 2 AND page_title = 'Caleb_Cooper/sandbox' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds [0s] wiki-mariadb: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `revision_comment_temp` `temp_rev_comment` ON ((temp_rev_comment.revcomment_rev = rev_id)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = temp_rev_comment.revcomment_comment_id)) JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 18606 LIMIT 1
[objectcache] fetchOrRegenerate(global:revision-row-1.29:stagingwiki8:977:18606): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Revision\RevisionStore::loadSlotRecordsFromDb [0s] wiki-mariadb: SELECT slot_revision_id,slot_content_id,slot_origin,slot_role_id,content_size,content_sha1,content_address,content_model FROM `slots` JOIN `content` ON ((slot_content_id = content_id)) WHERE slot_revision_id = 18606
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Storage\NameTableStore::loadTable [0s] wiki-mariadb: SELECT role_id AS `id`,role_name AS `name` FROM `slot_roles` ORDER BY id
[objectcache] fetchOrRegenerate(global:NameTableSqlStore:slot_roles:stagingwiki8): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Storage\NameTableStore::loadTable [0s] wiki-mariadb: SELECT model_id AS `id`,model_name AS `name` FROM `content_models` ORDER BY id
[objectcache] fetchOrRegenerate(global:NameTableSqlStore:content_models:stagingwiki8): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:page-content-model:18606): miss, new value computed
[ContentHandler] Registered handler for wikitext: WikitextContentHandler
[objectcache] getWithSetCallback(stagingwiki8:page-content-model:18606): process cache hit
[objectcache] getWithSetCallback(stagingwiki8:page-content-model:18606): process cache hit
[UserOptionsManager] Loading options from database
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\User\UserOptionsManager::loadOptionsFromDb [0s] wiki-mariadb: SELECT up_property,up_value FROM `user_properties` WHERE up_user = 136
[MessageCache] MessageCache using store SqlBagOStuff
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for localAutoCommit/0
[DBQuery] SqlBagOStuff::fetchBlobs [0s] wiki-mariadb: SELECT keyname,value,exptime FROM `objectcache` WHERE keyname = 'stagingwiki8:messages:en' AND (exptime >= '20230221082314')
[SQLBagOStuff] SqlBagOStuff debug: SqlBagOStuff::fetchBlobs: retrieved stagingwiki8:messages:en; expiry time is 99991231235959
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for localAutoCommit/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for localAutoCommit/0
[DBQuery] SqlBagOStuff::fetchBlobs [0s] wiki-mariadb: SELECT keyname,value,exptime FROM `objectcache` WHERE keyname = 'stagingwiki8:messages:en:status' AND (exptime >= '20230221082314')
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for localAutoCommit/0
[DBQuery] SqlBagOStuff::doLock [0s] wiki-mariadb: SELECT IF(GET_LOCK('stagingwiki8:messages:en',0),UNIX_TIMESTAMP(SYSDATE(6)),NULL) AS acquired
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MessageCache::loadFromDB(en)-big [0s] wiki-mariadb: SELECT page_title,page_latest FROM `page` WHERE page_is_redirect = 0 AND page_namespace = 8 AND (page_title NOT LIKE '%/%' ESCAPE '`' ) AND (page_len > 10000)
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0.001s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'list' LIMIT 1
[DBQuery] MessageCache::loadFromDB(en)-small [0.002s] wiki-mariadb: SELECT /*! STRAIGHT_JOIN */ rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len FROM `page` JOIN `revision` ON ((page_id = rev_page)) JOIN `revision_comment_temp` `temp_rev_comment` ON ((temp_rev_comment.revcomment_rev = rev_id)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = temp_rev_comment.revcomment_comment_id)) JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) WHERE page_is_redirect = 0 AND page_namespace = 8 AND (page_title NOT LIKE '%/%' ESCAPE '`' ) AND (page_len <= 10000) AND (page_latest = rev_id)
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Revision\RevisionStore::getSlotRowsForBatch [0s] wiki-mariadb: SELECT slot_revision_id,slot_content_id,slot_origin,slot_role_id,content_size,content_sha1,content_address,content_model FROM `slots` JOIN `content` ON ((slot_content_id = content_id)) WHERE slot_revision_id IN (13350,18590,18595,18518) AND slot_role_id = 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Storage\SqlBlobStore::fetchBlobs [0s] wiki-mariadb: SELECT old_id,old_text,old_flags FROM `text` WHERE old_id IN (12320,17676,17745,17750)
[RevisionStore] Undefined content model 'sanitized-css', falling back to FallbackContent
[MessageCache] MessageCache::getMessageTextFromContent: message content doesn't provide wikitext (content model: sanitized-css)
[MessageCache] MessageCache::loadFromDB: failed to load message page text for Vector.css (en)
[ContentHandler] Registered handler for javascript: JavaScriptContentHandler
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for localAutoCommit/0
[DBQuery] SqlBagOStuff::modifyTableSpecificBlobsForSet [0.001s] wiki-mariadb: REPLACE INTO `objectcache` (keyname,value,exptime) VALUES ('stagingwiki8:messages:en','�W�s�6�������ՏV�+��mo�cI�4��M�]����ms�D����b���)�V�6mnݧ���\0~\0���@��x��k5={�G��]_J�+�m?y�����&_,�\Zq��Fdz�Q�����.n��L��Y���X�X�*x�)�ϟ�ް�݋o�7rE��`��)��R��0��r��\0�\\\0A�LR!��@�����L2��MY�z����\"��j��$���g�����5��,��j%��Rs)�%)\n-��XWS&����1�MXL·�Zi���S���ZWol��ܹj�Q��<�I\"�(��6��5WNy�\Z�h4@�(�`���%���@q�A\0S�����ŏe�~�\\�D�˯i�}�FD��琴0�\\���#~��ϐ�_��\rCwaq��0!���C%���ֲ����\"0�oy�ihv1�_���\'t�2|�Ҁ+�QaH����f��U@����\'��m{�� X��o>��\n�����RP��w�Gx��ò��%��Q�0�GE��F���\"����^��c��NX���Yh=6���Ny�ǖ�c��ku�}x�l���m�Y�����H��ƞ��!xj���_�f�W��l�T7!E(�L�=2�<�)څ���O����@���E���@��(���:}9@ �Kl���B�N�\Z�����:��p�7Mσ���׵_?�G2y�X��=�Zd\r2�i��˭�{p���V�OC�Ů�t��U�^��F�hL��kc�TW���][+\'���h/3�6��J�:�Tj�c���\n��\0�\"+�|�p����\\�38��jP^t_@���`��{��i �j���$ Eg�z�v��b A�G���BNe��֬����� �X-,������$`3��f��v��<�#u���VFuY~���U����EU�[���mB�*ϊ��i0>�F0�9��\'[7�u����3�S�*�H��H�ԍh�H�.��Ť���a�0iJ6���P������R^�����\"���1�3�ԥ�n�v�����i������d��5�T~2C�����E���x�P�C�_V�C�E�h�^�A� 3�p����8��y�r�U���ZIl�T�j���}a1�X���篚1 %Eza҉_z����!���3��6q*��)�b�cƪ��u�b=>ϋ��Pi��� ����S�O�tf\"�����A�\"�l�KR���4H���_��L���\\P9/�@\Z��8�a����9הeձed7 %(up`V!U��_���\Z��{����ݐ0�\\�Yk�)M��,�Z�K���Mi0/�Z�/���<�-�r��ze`����\n�9��<��\Z�ڽ,ss�i�[�����Z,��S8��������no���~V�������.�v���������y��`��6d*ۯx���.���\'ҕ�Ĥ��|da��#�JR�|�O�#��&�5�+�[�hҿ¯+n?�l�u͝�4����Aa-j����u���!�}UЈF#*����y��W����G�wJ���Et2��7BU�Wg����������|�;��[����X��\'���`x�?���kw�[�;�#ŭ��xr0���������H/;m�n7�θ�l�;㍭Q�=�iovhs�����h����|8;��ֆVjw��v����6���o','99991231235959')
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for localAutoCommit/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for localAutoCommit/0
[DBQuery] SqlBagOStuff::doUnlock [0s] wiki-mariadb: SELECT RELEASE_LOCK('stagingwiki8:messages:en') AS released
[MessageCache] MessageCache::loadUnguarded: Loading en... local cache is empty, global cache is expired/volatile, loading from database
ParserFactory: using default preprocessor
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'magicWords' LIMIT 1
[objectcache] getWithSetCallback(stagingwiki8:page-content-model:18606): process cache hit
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\User\UserGroupManager::getUserGroupMemberships [0.001s] wiki-mariadb: SELECT ug_user,ug_group,ug_expiry FROM `user_groups` WHERE ug_user = 136
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Permissions\RestrictionStore::loadRestrictions [0s] wiki-mariadb: SELECT pr_type,pr_expiry,pr_level,pr_cascade FROM `page_restrictions` WHERE pr_page = 977
[objectcache] fetchOrRegenerate(stagingwiki8:page-restrictions:v1:977:18606): miss, new value computed
[ParserCache] Creating ParserCache instance for pcache
[ParserCache] Creating RevisionOutputCache instance for rcache
[objectcache] getWithSetCallback(stagingwiki8:page-content-model:18606): process cache hit
Unstubbing $wgLang on call of $wgLang::getDatePreferenceMigrationMap from ParserOptions::initDateFormat
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'datePreferenceMigrationMap' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for localAutoCommit/0
[DBQuery] SqlBagOStuff::fetchBlobs [0s] wiki-mariadb: SELECT keyname,value,exptime FROM `objectcache` WHERE keyname = 'stagingwiki8:pcache:idoptions:977' AND (exptime >= '20230221082314')
[SQLBagOStuff] SqlBagOStuff debug: SqlBagOStuff::fetchBlobs: retrieved stagingwiki8:pcache:idoptions:977; expiry time is 20230221140537
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for localAutoCommit/0
[objectcache] getWithSetCallback(stagingwiki8:page-content-model:18606): process cache hit
[ParserCache] metadata key expired
Article::generateContentOutput: doing uncached parse
[objectcache] getWithSetCallback(stagingwiki8:page-content-model:18606): process cache hit
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for localAutoCommit/0
[DBQuery] SqlBagOStuff::fetchBlobs [0s] wiki-mariadb: SELECT keyname,value,exptime FROM `objectcache` WHERE keyname = 'stagingwiki8:pcache:idoptions:977' AND (exptime >= '20230221082314')
[SQLBagOStuff] SqlBagOStuff debug: SqlBagOStuff::fetchBlobs: retrieved stagingwiki8:pcache:idoptions:977; expiry time is 20230221140537
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for localAutoCommit/0
[ParserCache] Parser cache options found
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Storage\SqlBlobStore::fetchBlobs [0s] wiki-mariadb: SELECT old_id,old_text,old_flags FROM `text` WHERE old_id = 17761
[objectcache] fetchOrRegenerate(global:SqlBlobStore-blob:stagingwiki8:tt%3A17761): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'linkPrefixExtension' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LocalFile::loadFromDB [0s] wiki-mariadb: SELECT img_name,img_size,img_width,img_height,img_metadata,img_bits,img_media_type,img_major_mime,img_minor_mime,img_timestamp,img_sha1,img_actor,image_actor.actor_user AS `img_user`,image_actor.actor_name AS `img_user_text`,comment_img_description.comment_text AS `img_description_text`,comment_img_description.comment_data AS `img_description_data`,comment_img_description.comment_id AS `img_description_cid`,img_metadata FROM `image` JOIN `actor` `image_actor` ON ((actor_id=img_actor)) JOIN `comment` `comment_img_description` ON ((comment_img_description.comment_id = img_description_id)) WHERE img_name = 'Videoonwikipedia.ogv' LIMIT 1
[objectcache] fetchOrRegenerate(global:filerepo-file:stagingwiki8:d140a8b73f6d4c1a499f528d46cefd8874752127): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LocalRepo::checkRedirect [0s] wiki-mariadb: SELECT rd_namespace,rd_title FROM `page`,`redirect` WHERE page_namespace = 6 AND page_title = 'Videoonwikipedia.ogv' AND (rd_from = page_id) LIMIT 1
[objectcache] fetchOrRegenerate(global:filerepo-file-redirect:stagingwiki8:f673e47feabcc1056b0e802811ca5bc1): miss, new value computed
[DBQuery] Wikimedia\Rdbms\DatabaseMysqlBase::open [0s] wiki-mariadb: SET group_concat_max_len = 262144, `sql_mode` = ''
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getForeignConnection: opened new connection for foreignInUse/0/commons
[DBQuery] Wikimedia\Rdbms\DatabaseMysqlBase::serverIsReadOnly [0s] wiki-mariadb: SELECT @@GLOBAL.read_only AS Value
[DBQuery] Wikimedia\Rdbms\Database::beginIfImplied (ForeignDBFile::loadFromDB) [0s] wiki-mariadb: BEGIN
[DBQuery] ForeignDBFile::loadFromDB [0s] wiki-mariadb: SELECT img_name,img_size,img_width,img_height,img_metadata,img_bits,img_media_type,img_major_mime,img_minor_mime,img_timestamp,img_sha1,img_actor,image_actor.actor_user AS `img_user`,image_actor.actor_name AS `img_user_text`,comment_img_description.comment_text AS `img_description_text`,comment_img_description.comment_data AS `img_description_data`,comment_img_description.comment_id AS `img_description_cid`,img_metadata FROM `image` JOIN `actor` `image_actor` ON ((actor_id=img_actor)) JOIN `comment` `comment_img_description` ON ((comment_img_description.comment_id = img_description_id)) WHERE img_name = 'Videoonwikipedia.ogv' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getForeignConnection: reusing connection foreignInUse/0/commons
[DBConnection] Wikimedia\Rdbms\LoadBalancer::reuseConnectionInternal: reference count for 0/commons reduced to 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::reuseConnectionInternal: freed connection 0/commons
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:bad_image_list' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LocalFile::loadFromDB [0s] wiki-mariadb: SELECT img_name,img_size,img_width,img_height,img_metadata,img_bits,img_media_type,img_major_mime,img_minor_mime,img_timestamp,img_sha1,img_actor,image_actor.actor_user AS `img_user`,image_actor.actor_name AS `img_user_text`,comment_img_description.comment_text AS `img_description_text`,comment_img_description.comment_data AS `img_description_data`,comment_img_description.comment_id AS `img_description_cid`,img_metadata FROM `image` JOIN `actor` `image_actor` ON ((actor_id=img_actor)) JOIN `comment` `comment_img_description` ON ((comment_img_description.comment_id = img_description_id)) WHERE img_name = 'Videoonwikipedia.ogv' LIMIT 1
[objectcache] fetchOrRegenerate(global:filerepo-file:stagingwiki8:d140a8b73f6d4c1a499f528d46cefd8874752127): miss, new value computed
[objectcache] getWithSetCallback(global:filerepo-file-redirect:stagingwiki8:f673e47feabcc1056b0e802811ca5bc1): process cache hit
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getForeignConnection: reusing free connection foreignInUse/0/commons
[DBQuery] ForeignDBFile::loadFromDB [0s] wiki-mariadb: SELECT img_name,img_size,img_width,img_height,img_metadata,img_bits,img_media_type,img_major_mime,img_minor_mime,img_timestamp,img_sha1,img_actor,image_actor.actor_user AS `img_user`,image_actor.actor_name AS `img_user_text`,comment_img_description.comment_text AS `img_description_text`,comment_img_description.comment_data AS `img_description_data`,comment_img_description.comment_id AS `img_description_cid`,img_metadata FROM `image` JOIN `actor` `image_actor` ON ((actor_id=img_actor)) JOIN `comment` `comment_img_description` ON ((comment_img_description.comment_id = img_description_id)) WHERE img_name = 'Videoonwikipedia.ogv' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getForeignConnection: reusing connection foreignInUse/0/commons
[DBConnection] Wikimedia\Rdbms\LoadBalancer::reuseConnectionInternal: reference count for 0/commons reduced to 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::reuseConnectionInternal: freed connection 0/commons
File::transform: Doing stat for mwstore://commons-backend/commons-thumb/f/f6/Videoonwikipedia.ogv/200px--Videoonwikipedia.ogv.jpg
[FileOperation] FileBackendStore::ingestFreshFileStats: File mwstore://commons-backend/commons-thumb/f/f6/Videoonwikipedia.ogv/200px--Videoonwikipedia.ogv.jpg does not exist
Creating video thumbnail at /tmp/transform_51d5ed2ee21c.jpg
File::transform: Doing stat for mwstore://commons-backend/commons-thumb/f/f6/Videoonwikipedia.ogv/720px-seek=121-Videoonwikipedia.ogv.jpg
[Mime] MimeAnalyzer::guessMimeType: WARNING: use of the $ext parameter is deprecated. Use improveTypeFromExtension($mime, $ext) instead.
[DBQuery] MWExceptionHandler::rollbackPrimaryChanges [0s] wiki-mariadb: ROLLBACK
[DBQuery] MWExceptionHandler::rollbackPrimaryChanges [0s] wiki-mariadb: ROLLBACK
[DBConnection] MWExceptionHandler::rollbackPrimaryChanges: acknowledged server-side transaction loss on wiki-mariadb
[exception] [1cb56abadf6309d5a854f5a8] /User:Caleb_Cooper/sandbox ValueError: Path cannot be empty
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] Wikimedia\Rdbms\Database::beginIfImplied (LCStoreDB::get) [0s] wiki-mariadb: BEGIN
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:internalerror' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LinkBatch::doQuery (for Skin::preloadExistence) [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_latest,page_touched,page_len,page_content_model FROM `page` WHERE (page_namespace = 2 AND page_title = 'Caleb_Cooper') OR (page_namespace = 3 AND page_title IN ('Caleb_Cooper','Caleb_Cooper/sandbox') )
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\User\TalkPageNotificationManager::dbCheckNewUserMessages [0s] wiki-mariadb: SELECT user_id FROM `user_newtalk` WHERE user_id = 136 LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'rtl' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'specialPageAliases' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:mytalk' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:mypreferences' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:mywatchlist' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:mycontris' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:pt-userlogout' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:nstab-user' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:nstab-user_talk' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Nstab-user_talk' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:b0a96b34051feb2e3ea71c9a1d9d0eb4a5838984): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Nstab-user_talk): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:view-view' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'View-view' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:bed9db6016ee14f1ae7f119f7924d1dd4c35531f): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:View-view): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-action-delete' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-action-move' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-action-protect' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] WatchedItemStore::fetchWatchedItems [0s] wiki-mariadb: SELECT wl_namespace,wl_title,wl_notificationtimestamp FROM `watchlist` WHERE wl_user = 136 AND ((wl_namespace = 2 AND wl_title = 'Caleb_Cooper/sandbox'))
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:unwatch' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:visualeditor-ca-editsource' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:special:ContributionScores' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Special:ContributionScores' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:e16103622d8459b9b92f781e62b12b8feba06709): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Special%3AContributionScores): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:contribution_scores' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Contribution_scores' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:4689de1eb7afdee6143ce80b2905de9e056fc637): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Contribution_scores): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:help:Contents' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Help:Contents' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:c97d2861c77541c0b755870a83e91cbcff0cb197): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Help%3AContents): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:special:AllPages' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Special:AllPages' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:4815bd43d7b079c8b29f2ffd4dd3b64524217c49): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Special%3AAllPages): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:all_Pages' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'All_Pages' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:bd7d7bcc9bfcfe5fdce6fbb505a644b930611412): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:All_Pages): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:new_Pages' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'New_Pages' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:f414af6cad2002aaf2569f77983e6aa316922d2b): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:New_Pages): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:most_Viewed' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Most_Viewed' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:4e3ce5ec9b6bf8dece687a023750a5c5025a0faf): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Most_Viewed): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:draft' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Draft' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:23d33e22acfcb9ecddb4a85f10607dc4ff49e23c): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Draft): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:special:UnreviewedPages' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Special:UnreviewedPages' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:21af1bd131fa2a5661c59518c9bb553f05a2d3e8): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Special%3AUnreviewedPages): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:not_Reviewed' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Not_Reviewed' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:4be15674759fd77d47036c8f78fc0fcf50e939f3): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Not_Reviewed): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:special:PendingChanges' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Special:PendingChanges' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:1a857a4c63e1487ce98e23764838d5041d12b1ce): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Special%3APendingChanges): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:pending_Changes' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Pending_Changes' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:02fbf79213158e81ae5291ff4907fa9ae09db744): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Pending_Changes): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:special:ReviewedPages' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Special:ReviewedPages' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:1a94607071dbd21ef857f45a22c6a01c7696bdda): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Special%3AReviewedPages): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:reviewed_Pages' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Reviewed_Pages' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:b1933966c9eb7c4be7446b3cbf6e18acb7a42b67): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Reviewed_Pages): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:https://commons.devops.supportlabs.dell' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Https://commons.devops.supportlabs.dell' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:54391bb82d158f599f4eefb8de9b46b9ac853883): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Https%3A//commons.devops.supportlabs.dell): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:commons' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Commons' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:b0f0f31f8eebcff47f5da52bce3d41444f6044a3): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Commons): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:https://stagingwiki5.devops.supportlabs.dell' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Https://stagingwiki5.devops.supportlabs.dell' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:0c7a61fbeb4d76bba2ee001516eae4d8fc457ac6): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Https%3A//stagingwiki5.devops.supportlabs.dell): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:labwiki' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Labwiki' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:22199614fba5d640f66a09c908e009a35aad7e2b): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Labwiki): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:https://stagingwiki6.devops.supportlabs.dell' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Https://stagingwiki6.devops.supportlabs.dell' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:5e9593cabc53d93c69225a7b43e1afe17c943b49): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Https%3A//stagingwiki6.devops.supportlabs.dell): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:eqliki' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Eqliki' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:45f6bbee6e6a4b374382a88dbebdb84801ffd0a4): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Eqliki): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:https://stagingwiki7.devops.supportlabs.dell' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Https://stagingwiki7.devops.supportlabs.dell' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:252892baf563067ded3727d5228fe6c9d7e13d7c): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Https%3A//stagingwiki7.devops.supportlabs.dell): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:compiki' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Compiki' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:538819419bdf70a5cc6ed4786a30317b6ccf1920): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Compiki): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:https://stagingwiki8.devops.supportlabs.dell' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Https://stagingwiki8.devops.supportlabs.dell' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:c08e7aba43d67e01ff2b35126aeb62c3e43a0f39): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Https%3A//stagingwiki8.devops.supportlabs.dell): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:powerstorewiki' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Powerstorewiki' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:08a89fc6df399c1c0e5690e81e241bb47de4ee16): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Powerstorewiki): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Block\DatabaseBlock::newLoad [0s] wiki-mariadb: SELECT ipb_id,ipb_address,ipb_timestamp,ipb_auto,ipb_anon_only,ipb_create_account,ipb_enable_autoblock,ipb_expiry,ipb_deleted,ipb_block_email,ipb_allow_usertalk,ipb_parent_block_id,ipb_sitewide,ipb_by_actor,ipblocks_actor.actor_user AS `ipb_by`,ipblocks_actor.actor_name AS `ipb_by_text`,comment_ipb_reason.comment_text AS `ipb_reason_text`,comment_ipb_reason.comment_data AS `ipb_reason_data`,comment_ipb_reason.comment_id AS `ipb_reason_cid` FROM `ipblocks` JOIN `actor` `ipblocks_actor` ON ((actor_id=ipb_by_actor)) JOIN `comment` `comment_ipb_reason` ON ((comment_ipb_reason.comment_id = ipb_reason_id)) WHERE ipb_address = 'Caleb Cooper'
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tool-link-contributions' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Block\DatabaseBlock::newLoad [0s] wiki-mariadb: SELECT ipb_id,ipb_address,ipb_timestamp,ipb_auto,ipb_anon_only,ipb_create_account,ipb_enable_autoblock,ipb_expiry,ipb_deleted,ipb_block_email,ipb_allow_usertalk,ipb_parent_block_id,ipb_sitewide,ipb_by_actor,ipblocks_actor.actor_user AS `ipb_by`,ipblocks_actor.actor_name AS `ipb_by_text`,comment_ipb_reason.comment_text AS `ipb_reason_text`,comment_ipb_reason.comment_data AS `ipb_reason_data`,comment_ipb_reason.comment_id AS `ipb_reason_cid` FROM `ipblocks` JOIN `actor` `ipblocks_actor` ON ((actor_id=ipb_by_actor)) JOIN `comment` `comment_ipb_reason` ON ((comment_ipb_reason.comment_id = ipb_reason_id)) WHERE ipb_address = 'Caleb Cooper'
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:blockip' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] User::loadFromDatabase [0s] wiki-mariadb: SELECT user_id,user_name,user_real_name,user_email,user_touched,user_token,user_email_authenticated,user_email_token,user_email_token_expires,user_registration,user_editcount,user_actor.actor_id FROM `user` JOIN `actor` `user_actor` ON ((user_actor.actor_user = user_id)) WHERE user_id = 136 LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tool-link-emailuser' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tool-link-userrights' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-Navigation' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-p-Navigation' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:e7dd7310f054d3eae9874f654a7b380464c7c05f): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-p-Navigation): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-n-Contribution-scores' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-n-Contribution-scores' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:bca13326a7864276c87909262f5c30a522b24539): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-n-Contribution-scores): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-n-Contribution-scores' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-n-Contribution-scores' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:b169933d2272e4e91880745ccef79b59b5f4d933): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Accesskey-n-Contribution-scores): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-n-Help' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-n-Help' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:e080fd7b4d8a3ed3f996ff2ee001cecf86278de1): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-n-Help): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-n-Help' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-n-Help' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:a09d13c346036b675ff52af386bd0a470ef42483): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Accesskey-n-Help): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-categorytree-portlet' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-p-categorytree-portlet' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:51d982727e411bf117bfe598be8b638092ae32af): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-p-categorytree-portlet): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:categorytree-portlet' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Categorytree-portlet' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:6b7d2bb392e3338648829f5c193923b8a3f2a8a1): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds [0s] wiki-mariadb: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `revision_comment_temp` `temp_rev_comment` ON ((temp_rev_comment.revcomment_rev = rev_id)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = temp_rev_comment.revcomment_comment_id)) JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 2685 LIMIT 1
[objectcache] fetchOrRegenerate(global:revision-row-1.29:stagingwiki8:975:2685): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Revision\RevisionStore::loadSlotRecordsFromDb [0s] wiki-mariadb: SELECT slot_revision_id,slot_content_id,slot_origin,slot_role_id,content_size,content_sha1,content_address,content_model FROM `slots` JOIN `content` ON ((slot_content_id = content_id)) WHERE slot_revision_id = 2685
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Storage\SqlBlobStore::fetchBlobs [0s] wiki-mariadb: SELECT old_id,old_text,old_flags FROM `text` WHERE old_id = 2303
[objectcache] fetchOrRegenerate(global:SqlBlobStore-blob:stagingwiki8:tt%3A2303): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Categorytree-portlet): miss, new value computed
[MessageCache] MessageCache::getMsgFromNamespace: loading volatile key 'Categorytree-portlet'
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-Document_Control' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-p-Document_Control' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:bcaa701fe52270ab848e1720c3483ab36ec50274): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-p-Document_Control): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-n-All-Pages' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-n-All-Pages' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:a711bb471f4f421ca34e57e087e1f5b17756e7cc): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-n-All-Pages): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-n-All-Pages' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-n-All-Pages' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:5eb91c7ee82d29032eef74186fd99c575a50cd5c): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Accesskey-n-All-Pages): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-n-New-Pages' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-n-New-Pages' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:2cbbea3e64f346795ea8a4a4bd0f05b25fec4f17): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-n-New-Pages): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-n-New-Pages' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-n-New-Pages' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:ca37d43ebef7af8ea19b731f159118d6df8ca153): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Accesskey-n-New-Pages): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-n-Most-Viewed' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-n-Most-Viewed' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:d318147c23aff81c4fba2c8dbcaf1a61a88c286d): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-n-Most-Viewed): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-n-Most-Viewed' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-n-Most-Viewed' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:7fd2e299a281801b063cd9448f3deb9f82f46334): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Accesskey-n-Most-Viewed): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-n-Draft' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-n-Draft' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:fe3fcc9ca85ef1054c796705a850a1cf749f3b2b): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-n-Draft): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-n-Draft' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-n-Draft' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:075c1248192adc07f53b2aefabbb6527a54ad546): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Accesskey-n-Draft): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-n-Not-Reviewed' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-n-Not-Reviewed' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:bddc38cb867b67076690ab03bfb803b398732b16): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-n-Not-Reviewed): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-n-Not-Reviewed' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-n-Not-Reviewed' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:c3978ec26337fe072d8b881b9ee4ea2fbc555399): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Accesskey-n-Not-Reviewed): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-n-Pending-Changes' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-n-Pending-Changes' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:31289dfdca7669d21b9e282d7ddda541334eb529): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-n-Pending-Changes): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-n-Pending-Changes' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-n-Pending-Changes' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:9514c63bd4c6da36a3d87a11a90e4362d168532d): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Accesskey-n-Pending-Changes): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-n-Reviewed-Pages' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-n-Reviewed-Pages' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:a8fa7fbf5557f51fe2cd74e6d3103eaa2130a4f9): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-n-Reviewed-Pages): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-n-Reviewed-Pages' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-n-Reviewed-Pages' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:386c1d93e6cc4f6fdd6ca0f504b4973fdbf14092): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Accesskey-n-Reviewed-Pages): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:document_Control' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Document_Control' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:cce25e5f20cd55914b6d81b61ecf381a7000661d): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Document_Control): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-USER-SIDEBAR' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-p-USER-SIDEBAR' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:afa595e9ae74ed234cb24691a2e46e932f845661): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-p-USER-SIDEBAR): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:uSER-SIDEBAR' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'USER-SIDEBAR' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:76bb2eda2344a192fa0bf45c0f9bb98c6259da52): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:USER-SIDEBAR): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-GROUP-SIDEBAR' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-p-GROUP-SIDEBAR' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:069b81897ed2faa71ee650286df9bb7468178f99): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-p-GROUP-SIDEBAR): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:gROUP-SIDEBAR' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'GROUP-SIDEBAR' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:16cf817c31d514a508cda79aa18e4e8480df315b): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:GROUP-SIDEBAR): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-tb' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-t-contributions' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-t-contributions' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:log' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-t-log' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-t-log' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:4aeb181c0dcaddb16c4ef544346287a767b52c26): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-t-log): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-t-log' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-t-log' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:b1f59807d0e16ce8a752cf7cb95f93b2284c6fb7): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Accesskey-t-log): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-t-blockip' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-t-blockip' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:0ef58e9e41d168f0412a76bed2af42daaae53d0f): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-t-blockip): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-t-blockip' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-t-blockip' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:fe34135d0b04fed4ba11dd12415c88b1b53acf6c): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Accesskey-t-blockip): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-t-emailuser' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-t-emailuser' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-t-userrights' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-t-userrights' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:28271deea14679f4519bab33e83e9c0c541f8e04): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-t-userrights): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-t-userrights' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-t-userrights' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:561d8fccf24f71c3b9a5f8c960e69aafbb557444): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Accesskey-t-userrights): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:upload' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-t-upload' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-t-upload' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-lang' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:otherlanguages' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-Sites' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-p-Sites' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:6586d07f450d2a680ba025b2eba72394cb41ea3c): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-p-Sites): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-n-commons' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-n-commons' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:107aac2077718196741d2f56694387e54fd5954c): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-n-commons): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-n-commons' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-n-commons' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:6673736eae8e30d0976fd9cece0d40667f67efc2): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Accesskey-n-commons): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-n-labwiki' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-n-labwiki' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:732263b44a3a4634bb833ad189565b04156c489f): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-n-labwiki): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-n-labwiki' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-n-labwiki' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:07c78b39f31956b1a7ccfd6fa843b406723a597a): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Accesskey-n-labwiki): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-n-eqliki' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-n-eqliki' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:3fd57d77a6f766c90e9c2babd32d62ed2d670387): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-n-eqliki): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-n-eqliki' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-n-eqliki' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:8b0d879115efbf432fc3f55cd1062568839dd534): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Accesskey-n-eqliki): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-n-compiki' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-n-compiki' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:f7acc9874a954c9de84d160c5bab371b18dfa8ba): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-n-compiki): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-n-compiki' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-n-compiki' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:e1e37acddf1cf7eff02bc933de69b17aae7f6f45): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Accesskey-n-compiki): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-n-powerstorewiki' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-n-powerstorewiki' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:227cc02c5602d45f6c852ee4fbc48f5c142d2f39): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-n-powerstorewiki): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-n-powerstorewiki' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-n-powerstorewiki' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:b9359d8b67d45f7346989947ea5a1b7c79e8ccdb): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Accesskey-n-powerstorewiki): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:sites' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Sites' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:5cae88ddf5336e6a23091c01317b646467eb857e): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Sites): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-user-interface-preferences' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:user-interface-preferences' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'User-interface-preferences' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:cc55e312a5aa3b8484b6bc564e3edba47c592500): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:User-interface-preferences): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-personal' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-pt-userpage' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-pt-userpage' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-pt-mytalk' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-pt-mytalk' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-pt-preferences' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-pt-preferences' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-pt-watchlist' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-pt-watchlist' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-pt-mycontris' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-pt-mycontris' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-pt-logout' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-pt-logout' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-notifications' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-p-notifications' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:5e89b9c18080b9e1a98fafc0da774d0eec80a023): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-p-notifications): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:notifications' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Notifications' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:753a22b2eb617204efee4644795034b8ace1ee14): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Notifications): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-associated-pages' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-p-associated-pages' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:ef738cc53166fcf45692d0ade99df069e848dfb2): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Tooltip-p-associated-pages): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-ca-nstab-user' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-ca-nstab-user' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:red-link-title' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:associated-pages' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Associated-pages' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:cb7b37d2da1ced2fadc11aa3317c1a8efcf39648): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Associated-pages): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-namespaces' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-views' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-ca-view' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-ca-view' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-ca-ve-edit' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-ca-ve-edit' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-ca-unwatch' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-ca-unwatch' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-cactions' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-ca-delete' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-ca-delete' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-ca-move' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-ca-move' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-ca-protect' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-ca-protect' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:cactions' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-variants' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'defaultDateFormat' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'digitTransformTable' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:february' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:namespacenotice-2' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Namespacenotice-2' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:0f2141ad13dc3e45a766252ea976f080100bd98b): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Namespacenotice-2): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds [0s] wiki-mariadb: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `revision_comment_temp` `temp_rev_comment` ON ((temp_rev_comment.revcomment_rev = rev_id)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = temp_rev_comment.revcomment_comment_id)) JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 2685 LIMIT 1
[objectcache] fetchOrRegenerate(global:revision-row-1.29:stagingwiki8:975:2685): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Revision\RevisionStore::loadSlotRecordsFromDb [0s] wiki-mariadb: SELECT slot_revision_id,slot_content_id,slot_origin,slot_role_id,content_size,content_sha1,content_address,content_model FROM `slots` JOIN `content` ON ((slot_content_id = content_id)) WHERE slot_revision_id = 2685
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Storage\SqlBlobStore::fetchBlobs [0s] wiki-mariadb: SELECT old_id,old_text,old_flags FROM `text` WHERE old_id = 2303
[objectcache] fetchOrRegenerate(global:SqlBlobStore-blob:stagingwiki8:tt%3A2303): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Categorytree-portlet): miss, new value computed
[MessageCache] MessageCache::getMsgFromNamespace: loading volatile key 'Categorytree-portlet'
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-opt-out-tooltip' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-opt-out' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-action-toggle-sidebar' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-main-menu-tooltip' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-jumptonavigation' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-jumptosearch' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-jumptocontent' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:sitesubtitle' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:sitetitle' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:variantname-en' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0s] wiki-mariadb: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Variantname-en' LIMIT 1
[objectcache] fetchOrRegenerate(stagingwiki8:page:8:2065ff0b4b26c26fa83f8ad4a9907bb9ded198d0): miss, new value computed
[objectcache] fetchOrRegenerate(stagingwiki8:messages-big:20e8f0d4d8f46bd7f8253e0720fefb60:Variantname-en): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\ResourceLoader\WikiModule::preloadTitleInfo [0s] wiki-mariadb: SELECT page_namespace,page_title,page_touched,page_len,page_latest FROM `page` WHERE (page_namespace = 8 AND page_title IN ('Common.css','Noscript.css','Print.css','Vector.css') )
[objectcache] fetchOrRegenerate(global:resourceloader-titleinfo:stagingwiki8:e13a4c6012b98731f23f3a3a185dc3aa663155e7): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] User::load [0s] wiki-mariadb: SELECT actor_id,actor_user,actor_name FROM `actor` WHERE actor_name = 'Caleb Cooper' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] User::loadFromDatabase [0s] wiki-mariadb: SELECT user_id,user_name,user_real_name,user_email,user_touched,user_token,user_email_authenticated,user_email_token,user_email_token_expires,user_registration,user_editcount,user_actor.actor_id FROM `user` JOIN `actor` `user_actor` ON ((user_actor.actor_user = user_id)) WHERE user_id = 136 LIMIT 1
[DBQuery] MediaWiki\ResourceLoader\WikiModule::preloadTitleInfo [0s] wiki-mariadb: SELECT page_namespace,page_title,page_touched,page_len,page_latest FROM `page` WHERE (page_namespace = 8 AND page_title IN ('Group-autoconfirmed.css','Group-autoconfirmed.js','Group-bureaucrat.css','Group-bureaucrat.js','Group-editor.css','Group-editor.js','Group-interface-admin.css','Group-interface-admin.js','Group-reviewer.css','Group-reviewer.js','Group-sysop.css','Group-sysop.js','Group-tech-L2.css','Group-tech-L2.js','Group-tech-L3.css','Group-tech-L3.js','Group-user.css','Group-user.js') )
[objectcache] fetchOrRegenerate(global:resourceloader-titleinfo:stagingwiki8:811316b510a83c85269d38874d1f45f3ec284093): miss, new value computed
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'separatorTransformTable' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:january' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:march' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:april' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:may_long' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:june' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:july' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:august' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:september' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:october' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:november' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:december' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] MediaWiki\Block\DatabaseBlock::newLoad [0s] wiki-mariadb: SELECT ipb_id,ipb_address,ipb_timestamp,ipb_auto,ipb_anon_only,ipb_create_account,ipb_enable_autoblock,ipb_expiry,ipb_deleted,ipb_block_email,ipb_allow_usertalk,ipb_parent_block_id,ipb_sitewide,ipb_by_actor,ipblocks_actor.actor_user AS `ipb_by`,ipblocks_actor.actor_name AS `ipb_by_text`,comment_ipb_reason.comment_text AS `ipb_reason_text`,comment_ipb_reason.comment_data AS `ipb_reason_data`,comment_ipb_reason.comment_id AS `ipb_reason_cid` FROM `ipblocks` JOIN `actor` `ipblocks_actor` ON ((actor_id=ipb_by_actor)) JOIN `comment` `comment_ipb_reason` ON ((comment_ipb_reason.comment_id = ipb_reason_id)) WHERE ipb_address = 'Caleb Cooper'
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] User::load [0s] wiki-mariadb: SELECT actor_id,actor_user,actor_name FROM `actor` WHERE actor_name = 'Caleb Cooper' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] User::loadFromDatabase [0s] wiki-mariadb: SELECT user_id,user_name,user_real_name,user_email,user_touched,user_token,user_email_authenticated,user_email_token,user_email_token_expires,user_registration,user_editcount,user_actor.actor_id FROM `user` JOIN `actor` `user_actor` ON ((user_actor.actor_user = user_id)) WHERE user_id = 136 LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-language-variant-switcher-label' LIMIT 1
[gitinfo] Candidate cacheFile=/var/lib/mediawiki/gitinfo.json for /var/lib/mediawiki
[gitinfo] Cache incomplete for /var/lib/mediawiki
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:size-megabytes' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'digitGroupingPattern' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'minimumGroupingDigits' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:size-kilobytes' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:size-bytes' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:formatnum-nan' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LCStoreDB::get [0s] wiki-mariadb: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'compiledPluralRules' LIMIT 1

I can't replicate this on my dev wiki using [[File:Videoonwikipedia.ogv|200px]] (or any other random sizing)...

But File::getLocalRefPath() can return false, when MimeAnalyzer::guessMimeType()only takes a string...

diff --git a/includes/filerepo/file/UnregisteredLocalFile.php b/includes/filerepo/file/UnregisteredLocalFile.php
index 4c91bdbfed0..ee06579aee3 100644
--- a/includes/filerepo/file/UnregisteredLocalFile.php
+++ b/includes/filerepo/file/UnregisteredLocalFile.php
@@ -160,8 +160,13 @@ class UnregisteredLocalFile extends File {
         */
        public function getMimeType() {
                if ( !isset( $this->mime ) ) {
-                       $magic = MediaWikiServices::getInstance()->getMimeAnalyzer();
-                       $this->mime = $magic->guessMimeType( $this->getLocalRefPath() );
+                       $refPath = $this->getLocalRefPath();
+                       if ( $refPath !== false ) {
+                               $magic = MediaWikiServices::getInstance()->getMimeAnalyzer();
+                               $this->mime = $magic->guessMimeType( $refPath );
+                       } else {
+                               $this->mime = false;
+                       }
                }
 
                return $this->mime;

Should probably fix the reported error, maybe bumping it to another code path (like T272328: MimeAnalyzer throws `ValueError: Path cannot be empty` on PHP 8.0 probably did in and unintended fashion)

diff --git a/includes/filerepo/file/UnregisteredLocalFile.php b/includes/filerepo/file/UnregisteredLocalFile.php
index 4c91bdbfed0..b96776dbb81 100644
--- a/includes/filerepo/file/UnregisteredLocalFile.php
+++ b/includes/filerepo/file/UnregisteredLocalFile.php
@@ -160,8 +160,11 @@ class UnregisteredLocalFile extends File {
         */
        public function getMimeType() {
                if ( !isset( $this->mime ) ) {
-                       $magic = MediaWikiServices::getInstance()->getMimeAnalyzer();
-                       $this->mime = $magic->guessMimeType( $this->getLocalRefPath() );
+                       $this->mime = $this->getLocalRefPath();
+                       if ( $this->mime !== false ) {
+                               $magic = MediaWikiServices::getInstance()->getMimeAnalyzer();
+                               $this->mime = $magic->guessMimeType( $this->mime );
+                       }
                }
 
                return $this->mime;

would be a slightly simpler patch, but it's reusing variables for different purposes, which is a bit icky

Change 890500 had a related patch set uploaded (by Reedy; author: Reedy):

[mediawiki/core@master] UnregisteredLocalFile: Don't call MimeAnalyzer if no path

https://gerrit.wikimedia.org/r/890500

@Reedy would you be able to share your local settings from your dev box? If so I'll try and figure out what I am doing differently to expose this.

Change 890500 merged by jenkins-bot:

[mediawiki/core@master] UnregisteredLocalFile: Don't call MimeAnalyzer if no path

https://gerrit.wikimedia.org/r/890500

Change 890851 had a related patch set uploaded (by Reedy; author: Reedy):

[mediawiki/core@REL1_39] UnregisteredLocalFile: Don't call MimeAnalyzer if no path

https://gerrit.wikimedia.org/r/890851

Change 890851 merged by jenkins-bot:

[mediawiki/core@REL1_39] UnregisteredLocalFile: Don't call MimeAnalyzer if no path

https://gerrit.wikimedia.org/r/890851

@Reedy when you attempted to reproduce this issue did you set up a separate commons wiki?
I have no issue when using instant commons.

After I test your patch the video shows as file not found:

image.png (182×34 px, 1 KB)

But I can verify that the file exists by manually browsing to the paths on the commons wiki both URLs work:
https://commons.devops.supportlabs.dell/images/f/f6/Videoonwikipedia.ogv
https://commons.devops.supportlabs.dell/File:Videoonwikipedia.ogv

The logs is showing this:

[MediaHandlerFactory] no handler found for false.

The full detail of this snipped is:

[DBQuery] ForeignDBFile::loadFromDB [0s] wiki-mariadb: SELECT img_name,img_size,img_width,img_height,img_metadata,img_bits,img_media_type,img_major_mime,img_minor_mime,img_timestamp,img_sha1,img_actor,image_actor.actor_user AS `img_user`,image_actor.actor_name AS `img_user_text`,comment_img_description.comment_text AS `img_description_text`,comment_img_description.comment_data AS `img_description_data`,comment_img_description.comment_id AS `img_description_cid`,img_metadata FROM `image` JOIN `actor` `image_actor` ON ((actor_id=img_actor)) JOIN `comment` `comment_img_description` ON ((comment_img_description.comment_id = img_description_id)) WHERE img_name = 'Videoonwikipedia.ogv' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getForeignConnection: reusing connection foreignInUse/0/commons
[DBConnection] Wikimedia\Rdbms\LoadBalancer::reuseConnectionInternal: reference count for 0/commons reduced to 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::reuseConnectionInternal: freed connection 0/commons
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: reused a connection for local/0
[DBQuery] LocalFile::loadFromDB [0s] wiki-mariadb: SELECT img_name,img_size,img_width,img_height,img_metadata,img_bits,img_media_type,img_major_mime,img_minor_mime,img_timestamp,img_sha1,img_actor,image_actor.actor_user AS `img_user`,image_actor.actor_name AS `img_user_text`,comment_img_description.comment_text AS `img_description_text`,comment_img_description.comment_data AS `img_description_data`,comment_img_description.comment_id AS `img_description_cid`,img_metadata FROM `image` JOIN `actor` `image_actor` ON ((actor_id=img_actor)) JOIN `comment` `comment_img_description` ON ((comment_img_description.comment_id = img_description_id)) WHERE img_name = 'Videoonwikipedia.ogv' LIMIT 1
[objectcache] fetchOrRegenerate(global:filerepo-file:stagingwiki8:d140a8b73f6d4c1a499f528d46cefd8874752127): miss, new value computed
[objectcache] getWithSetCallback(global:filerepo-file-redirect:stagingwiki8:f673e47feabcc1056b0e802811ca5bc1): process cache hit
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getForeignConnection: reusing free connection foreignInUse/0/commons
[DBQuery] ForeignDBFile::loadFromDB [0s] wiki-mariadb: SELECT img_name,img_size,img_width,img_height,img_metadata,img_bits,img_media_type,img_major_mime,img_minor_mime,img_timestamp,img_sha1,img_actor,image_actor.actor_user AS `img_user`,image_actor.actor_name AS `img_user_text`,comment_img_description.comment_text AS `img_description_text`,comment_img_description.comment_data AS `img_description_data`,comment_img_description.comment_id AS `img_description_cid`,img_metadata FROM `image` JOIN `actor` `image_actor` ON ((actor_id=img_actor)) JOIN `comment` `comment_img_description` ON ((comment_img_description.comment_id = img_description_id)) WHERE img_name = 'Videoonwikipedia.ogv' LIMIT 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getForeignConnection: reusing connection foreignInUse/0/commons
[DBConnection] Wikimedia\Rdbms\LoadBalancer::reuseConnectionInternal: reference count for 0/commons reduced to 1
[DBConnection] Wikimedia\Rdbms\LoadBalancer::reuseConnectionInternal: freed connection 0/commons
File::transform: Doing stat for mwstore://commons-backend/commons-thumb/f/f6/Videoonwikipedia.ogv/300px--Videoonwikipedia.ogv.jpg
[FileOperation] FileBackendStore::ingestFreshFileStats: File mwstore://commons-backend/commons-thumb/f/f6/Videoonwikipedia.ogv/300px--Videoonwikipedia.ogv.jpg does not exist
Creating video thumbnail at /tmp/transform_b70b22c78cb7.jpg
File::transform: Doing stat for mwstore://commons-backend/commons-thumb/f/f6/Videoonwikipedia.ogv/720px-seek=121-Videoonwikipedia.ogv.jpg
[MediaHandlerFactory] no handler found for false.

Also I tested again with various images on the commons wiki and all work fine. Only videos are affected. And only Videos where a thumbnail is generated.

@Reedy when you attempted to reproduce this issue did you set up a separate commons wiki?
I have no issue when using instant commons.

I didn't. The fact that it works with instantcommons, but not with your local "commons" makes it sound config-related.

Though, obviously, the error shouldn't have been badly handled as it was originally.

I certainly see your point there, but I keep paring the config back and really can't find an issue.

Only difference when using local commons is it has direct access to the DB and the local image filesystem which it obviously doesn't have on instant commons.

The fact that it works fine with images on the other hand would indicate that it might not be config related.

Is also strange that there is no issue on php 7.x

The fact that it works fine with images on the other hand would indicate that it might not be config related.

Do the videos work fine on your own commons? Scaling, thumbnailing etc

Is also strange that there is no issue on php 7.x

There's probably some different error suppression/handling going on, especially with the change in PHP 8 in the way things like false is handled when passed into functions wanting strings etc...

On our own commons images and vidoes work correctly, scaling thumbnailing everything.
Also if a video is uploaded to the test wiki everything works correct scaling thumbnailing etc...

I am trying to figure out how to increase debug to give more verbosity around this issue any suggestions would be much appreciated this is what I am using currently:

$wgDebugLogFile = $wikiDir."/logs/mediawiki-debug.log";                                                                         
$wgShowDebug = true;                                                                                                            
$wgShowExceptionDetails = true;                                                                                                 
$wgShowSQLErrors = true;                                                                                                                                                                                                  
$wgResourceLoaderDebug = true;                                                                                                  
$wgDebugDumpSql = true;                                                                                                         
                                                                                                                                
$wgDebugLogGroups['ResourceLoaderImage'] =                                                                                      
$wgDebugLogGroups['exception'] =                                                                                                
$wgDebugLogGroups['error'] =                                                                                                    
$wgDebugLogGroups['fatal'] =                                                                                                    
$wgDebugLogGroups['depreciated'] =                                                                                              
$wgDebugLogGroups['runJobs'] =                                                                                                  
$wgDebugLogGroups['parser'] =                                                                                                   
$wgDebugLogGroups['ParserCache'] =                                                                                              
$wgDebugLogGroups['slow-parse'] =                                                                                               
$wgDebugLogGroups['exec'] =  $wikiDir."/logs/mediawiki-debug.log";                                                              
                                                                                                                                
                                                                                                                                
$wgDebugLogGroups['DBPerformance'] =                                                                                            
$wgDebugLogGroups['DBReplication'] =                                                                                            
$wgDebugLogGroups['DBConnection'] =                                                                                   
$wgDebugLogGroups['DBQuery'] =  $wikiDir."/logs/mediawiki-db-debug.log";                                              
                                                                                                                      
                                                                                                                      
$wgDebugLogGroups['objectcache'] =                                                                                    
$wgDebugLogGroups['redis'] =                                                                                                                                                                              
$wgDebugLogGroups['caches'] =  $wikiDir."/logs/mediawiki-cache-debug.log";             

//Image debug                                                                                                  
$wgDebugLogGroups['thumbnail'] =                                                                                                                            
$wgDebugLogGroups['fileupload'] =                                                                                                                           
$wgDebugLogGroups['fileconcatenate'] =                                                                                                                      
$wgDebugLogGroups['ResourceLoaderImage'] = $wikiDir."/logs/mediawiki-image-debug.log";

It is entirely possible the areas of code may be poorly/insufficiently instrumented with logging statements...

Only difference when using local commons is it has direct access to the DB and the local image filesystem which it obviously doesn't have on instant commons.

It's obviously inefficient when there's local DB access... But have you tried making it using the API in the same way it instantcommons would?

And FWIW, if you've not seen it, https://noc.wikimedia.org/conf/highlight.php?file=filebackend.php is most of the config Wikimedia use for this situation.

Didn't have much time to test this today but when I set up the configuration to use the API instead I get a blank thumbnail. but the video plays (btw updated to 1.39.2)

image.png (387×217 px, 2 KB)

Starting to wonder if the issue is when the commons wiki is running php8. Will test more tomorrow.

Did some additional debug, if I used the simplest form of commons:

$commonsUrl = "https://mediapool.devops.supportlabs.dell";              
$commonsName = 'mediapool';                                                                                                           
                                                                        
$wgUseSharedUploads = true;                                                                                                           
$wgSharedUploadPath = "{$commonsUrl}/images";                           
$wgSharedUploadDirectory = "/wiki-shared/{$commonsName}/storage/images";                                                             
$wgHashedSharedUploadDirectory = true;                                                                                               
                                                                                                                                      
$wgFetchCommonsDescriptions = false;                                                                                                  
$wgSharedUploadDBname = 'mediapool';  # DB-Name of PoolWiki                                                                           
$wgSharedUploadDBprefix = ''; # Table name prefix for PoolWiki                                                                        
$wgRepositoryBaseUrl = "{$commonsUrl}/File:";                                                                                         
                                                                                                                                      
$wgCacheSharedUploads = false;

With this configuration ForeignDBRepo is automatically configured an debugging shows:

[25-Feb-2023 20:09:36 UTC] debugging wgForeignFileRepos: Array
(
    [0] => Array
        (
            [class] => ForeignDBRepo
            [name] => shared
            [directory] => /wiki-shared/mediapool/storage/images
            [url] => https://mediapool.devops.supportlabs.dell/images
            [hashLevels] => 2
            [thumbScriptUrl] => 
            [transformVia404] => 
            [dbType] => mysql
            [dbServer] => wiki-mariadb
            [dbUser] => wikisql
            [dbPassword] => 71071b9a78d9ba050b06834cfb46dfd97565111f
            [dbName] => mediapool
            [dbFlags] => 17
            [tablePrefix] => 
            [hasSharedCache] => 
            [descBaseUrl] => https://mediapool.devops.supportlabs.dell/File:
            [fetchDescription] => 
            [backend] => shared-backend
        )

)

There are no video thumbnails created and the thumbnail shows as:

image.png (181×28 px, 1 KB)

However images are resized and displayed without issue.

There is the following error in the mediawiki debug log:

File::transform: Doing stat for mwstore://shared-backend/shared-thumb/f/f6/Videoonwikipedia.ogv/510px--Videoonwikipedia.ogv.jpg
File::transform: Doing stat for mwstore://shared-backend/shared-thumb/f/f6/Videoonwikipedia.ogv/720px--Videoonwikipedia.ogv.jpg
File::transform: Doing stat for mwstore://shared-backend/shared-thumb/f/f6/Videoonwikipedia.ogv/720px--Videoonwikipedia.ogv.jpg
[error] [376bb5c937d3b3d43c4c7fe3] /Main_Page PHP Warning: Trying to access array offset on value of type bool

Also php error logs shows

[25-Feb-2023 19:54:19 UTC] PHP Warning:  Trying to access array offset on value of type bool in /var/lib/mediawiki/extensions/TimedMediaHandler/includes/TimedMediaTransformOutput.php on line 320

If I use the ForeignAPIRepo instead thumbnails are created for videos (ie if I list the appropriate dir) but don't show on the page:

$commonsUrl = "https://mediapool.devops.supportlabs.dell";
$commonsName = 'mediapool';
$wgTmpDirectory = "/wiki-shared/{$commonsName}/storage/images/temp";

$wgForeignFileRepos[] = [
        'class' => ForeignAPIRepo::class,
        'name' => $commonsName, // Must be a distinct name
        'url' => "{$commonsUrl}/images",
        'directory' => "/wiki-shared/{$commonsName}/storage/images",
        'apibase' => "{$commonsUrl}/api.php",
        'hashLevels' => 2,
        'fetchDescription' => false, // Optional
        'descriptionCacheExpiry' => 43200, // 12 hours, optional (values are seconds)
        'apiThumbCacheExpiry' => 86400, // 24 hours, optional, but required for local thumb caching
        'backend'  => "{$commonsName}-API-backend",
];

If found this workaround to use the ForeignAPIRepo to generate the thumb and then ForeignDBRepo to display it:

$commonsUrl = "https://mediapool.devops.supportlabs.dell";
$commonsName = 'mediapool';
$wgTmpDirectory = "/wiki-shared/{$commonsName}/storage/images/temp";

$wgForeignFileRepos[] = [
        'class' => ForeignAPIRepo::class,
        'name' => $commonsName, // Must be a distinct name
        'url' => "{$commonsUrl}/images",
        'directory' => "/wiki-shared/{$commonsName}/storage/images",
        'apibase' => "{$commonsUrl}/api.php",
        'hashLevels' => 2,
        'fetchDescription' => false, // Optional
        'descriptionCacheExpiry' => 43200, // 12 hours, optional (values are seconds)
        'apiThumbCacheExpiry' => 86400, // 24 hours, optional, but required for local thumb caching
        'backend'  => "{$commonsName}-API-backend",
];


$wgForeignFileRepos[] = [
        'class' => ForeignDBRepo::class,
        'name' => $commonsName,
        'url' => "{$commonsUrl}/images",
        'directory' => "/wiki-shared/{$commonsName}/storage/images",
        'dbType' => $wgDBtype,
        'dbServer' => $wgDBserver,
        'dbUser' => $wgDBuser,
        'dbPassword' => $wgDBpassword,
        'dbFlags' => DBO_DEFAULT,
        'dbName' => $commonsName,
        'hashLevels' => 2, # This must be the same for the other family member
        'tablePrefix' => '',
        'hasSharedCache' => true,
        'fetchDescription' => true,
        'descBaseUrl' => "{$commonsUrl}/File:",
        'backend'  => "{$commonsName}-DB-backend",
];

Now the performance is a bit slow but working as expected. Random thumbnails sizes are shown correctly.

Is this the expected behaviour? I would have thought it should be enough to use ForeignDBRepo only.

Edit: Added some more log output.

Change 891961 had a related patch set uploaded (by Reedy; author: Reedy):

[mediawiki/extensions/TimedMediaHandler@master] TimedMediaTransformOutput: Handle no media sources in getHtmlMediaTagOutput

https://gerrit.wikimedia.org/r/891961

Is this the expected behaviour? I would have thought it should be enough to use ForeignDBRepo only.

Probably not in theory, but it's probably just not well tested, especially as Wikimedia doesn't use the same classes... ForeignDBViaLBRepo etc are used (along with Swift classes), which you'd hope were similar, but it's likely you've found some edge cases...

Change 891961 merged by jenkins-bot:

[mediawiki/extensions/TimedMediaHandler@master] TimedMediaTransformOutput: Handle no media sources in getHtmlMediaTagOutput

https://gerrit.wikimedia.org/r/891961

Change 891974 had a related patch set uploaded (by Reedy; author: Reedy):

[mediawiki/extensions/TimedMediaHandler@REL1_39] TimedMediaTransformOutput: Handle no media sources in getHtmlMediaTagOutput

https://gerrit.wikimedia.org/r/891974

Change 891975 had a related patch set uploaded (by Reedy; author: Reedy):

[mediawiki/extensions/TimedMediaHandler@REL1_38] TimedMediaTransformOutput: Handle no media sources in getHtmlMediaTagOutput

https://gerrit.wikimedia.org/r/891975

Change 891976 had a related patch set uploaded (by Reedy; author: Reedy):

[mediawiki/extensions/TimedMediaHandler@REL1_35] TimedMediaTransformOutput: Handle no media sources in getHtmlMediaTagOutput

https://gerrit.wikimedia.org/r/891976

Change 891974 merged by jenkins-bot:

[mediawiki/extensions/TimedMediaHandler@REL1_39] TimedMediaTransformOutput: Handle no media sources in getHtmlMediaTagOutput

https://gerrit.wikimedia.org/r/891974

Change 891975 merged by jenkins-bot:

[mediawiki/extensions/TimedMediaHandler@REL1_38] TimedMediaTransformOutput: Handle no media sources in getHtmlMediaTagOutput

https://gerrit.wikimedia.org/r/891975

Change 891976 merged by jenkins-bot:

[mediawiki/extensions/TimedMediaHandler@REL1_35] TimedMediaTransformOutput: Handle no media sources in getHtmlMediaTagOutput

https://gerrit.wikimedia.org/r/891976

Finally got this working with ForeignDBViaLBRepo, will stick my config here incase any is searching and hits this..

$commonsUrl = "https://mediapool.devops.supportlabs.dell";                                                                                    
$commonsName = 'mediapool';                                                                                                                   
                                                                                                                                              
                                                                                                                                              
$wgGenerateThumbnailOnParse = false;                                                                                                          
                                                                                                                                              
$wgForeignFileRepos[] = [                                                                                                                     
        'class' => ForeignDBViaLBRepo::class,                                                                                                 
        'wiki' => $commonsName,                                                                                                               
        'name' => $commonsName, # displayname                                                                                                 
        'url' => "{$commonsUrl}/images",                                                                                                      
        'directory' => "/wiki-shared/{$commonsName}/storage/images",                                                                          
        'hashLevels' => 2, # This must be the same for the other family member                                                                
        'thumbScriptUrl' => false,                                                                                                            
        'tablePrefix' => '',                                                                                                                  
        'hasSharedCache' => true,                                                                                                             
        'fetchDescription' => true,                                                                                                           
        'scriptDirUrl' => "{$commonsUrl}", # has effect whether description can be fetched                                                    
        'transformVia404' => true,                                                                                                            
];

And corresponding nginx locations for /images/thumb, thumb.php and thumb_handler.php:

location ~ /thumb(_handler)?.php {                                                
  # extended php-timeout ( e.g. for update.php )
  fastcgi_read_timeout 200s;                    
  fastcgi_send_timeout 200s;                    
  fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  fastcgi_pass unix:/run/php-fpm.sock;                             
  include fastcgi_params;                                          
}                                                                  
                                                                   
location /images {                                                 
  # enable CORS access to this dir from other origins
  add_header Access-Control-Allow-Origin "*";        
  add_header Access-Control-Expose-Headers "Age,Date,X-Cache,X-Varnish";
                                                                        
  # allow downloads via Media Viewer                                    
  add_header Content-Disposition $imageDownloadAttachment;              
                                                                        
  # the hosting root-dir is updated/set during container startup        
  root /wiki-shared/mediapool/storage;                          
                                                                
  # set the 'Expires' header for 90days of image-caching to reverse-proxies
  # proxies often have their own expiry-lifetime for hot/cold cache items  
  expires 90d;                                                             
      location ~ ^/images/thumb/(archive/)?[0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/[^/]*([0-9]+)px-.*$ {
        try_files $uri $uri/ @thumb;                                                              
    }                                                                                             
}                                                                                                 
                                                                                                  
# Thumbnail 404 handler, only called by try_files when a thumbnail does not exist                 
location @thumb {                                                                
       # Do a rewrite here so that thumb.php gets the correct arguments          
       rewrite ^/images/thumb/([0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/[^/]*([0-9]+)px-.*)$ /thumb_handler.php/$1;
       rewrite ^/images/thumb/(archive/[0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/[^/]*([0-9]+)px-.*)$ /thumb_handler.php/$1;
}
Krinkle assigned this task to Reedy.
Krinkle subscribed.

Finally got this working with ForeignDBViaLBRepo, will stick my config here incase any is searching and hits this..

I'm not entirely sure but I believe you mean here that you got the solution working, not that you were able to reproduce the issue still and got that "working". Resolving as per the previous patches which appears to address the original PHP 8.1 support issue that this task was filed for.

correct the solution which had previously worked no longer worked after updating to the latest stack, I found a workaround for this by changing the config.

However the original errors this was opened for are indeed resolved by the patches provided.