Page MenuHomePhabricator

Improve message group selector performance reducing Translate API request time
Closed, ResolvedPublic

Description

Hoping it’s not already suggested, nor a T160565 duplicate.

The following may list a (too) large amount of messageGroups:
Special:PageTranslation, Special:AggregateGroups and group choosing tool in header of Special:Translate (following API query)

action=query
format=json
meta=messagegroups
mgformat=tree
mgiconsize=32
mgprop=id|label|icon|priority|prioritylangs|priorityforce

I suppose all these tools use the same internal API.

I hope pagination may improve both server-side and client-side performances (which are currently very poor).

Event Timeline

Speaking of Translate itself, pagination won't help unless the group selector learns to do server side search filtering.

Have you done profiling why the performance is poor?

Special:PageTranslation does not use API queries to my knowledge.

For Special:AggregateGroups I suggest to use T90511: Special:AggregateGroups is too large, needs collapsibility.

We could dedicate this ticket to optimizing the message group selector. Is that okay to you?

For Special:AggregateGroups I suggest to use T90511: Special:AggregateGroups is too large, needs collapsibility.

We could dedicate this ticket to optimizing the message group selector. Is that okay to you?

That’s fine to me, thanks.

Speaking of Translate itself, pagination won't help unless the group selector learns to do server side search filtering.

Have you done profiling why the performance is poor?

XHR take 27s to get an response (when an response is received…)
Please find a HAR file: https://framadrop.org/r/MuseyfK8RL#QPt9985xVlXfQNMhooZ3g/+fq1zJY1048rQXuYw64MA=
And a performance profile generated by Firefox: https://framadrop.org/r/DTa5JKVB6A#3uQAeYKdSVIPLWVw7ricSHt39XC7xTzog1ujlPJ6zJI=
(sorry, Phabricator refuses I upload them here)

I’m not able to analyze them, however the XHR to API time is really too long to make the tool usable on meta…

Nikerabbit added a subscriber: abi_.

Apparently it works after all: https://performance.wikimedia.org/xhgui/run/view?id=5dbad2613f3dfa7c5f89a004

Something weird going on TranslateMetadata::preloadGroups

Plain select * from translate_metadata is pretty fast: 26555 rows in set (0.04 sec).

It's more likely that the frequent calls (18197 to be exact) that run array_diff and array_fill_keys is burning CPU time. I think the preloading is not working properly, as I would expect much less calls to it.

Change 547615 had a related patch set uploaded (by Nikerabbit; owner: Nikerabbit):
[mediawiki/extensions/Translate@master] Optimize Translate::preloadMetadata

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

Change 547621 had a related patch set uploaded (by Thiemo Kreuz (WMDE); owner: Thiemo Kreuz (WMDE)):
[mediawiki/extensions/Translate@master] Optimize TranslateMetadata::preloadGroups() further

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

Change 547615 abandoned by Nikerabbit:
Optimize Translate::preloadMetadata

Reason:
Going for the competing patch.

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

Change 547621 merged by jenkins-bot:
[mediawiki/extensions/Translate@master] Alternative TranslateMetadata::preloadGroups() optimization

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

The request now takes a few seconds and no obvious hot spots:

FunctionCall CountSelf Wall TimeSelf CPUSelf Memory UsageSelf Peak Memory UsageInclusive Wall TimeInclusive CPUInclusive Memory UsageInclusive Peak Memory Usage
WikiPageMessageGroup::getLabel88508188,192 µs184,315 µs384 bytes168 bytes306,246 µs305,565 µs640 bytes384 bytes
MessageGroups::groupLabelSort73989146,674 µs145,319 µs256 bytes128 bytes476,133 µs475,597 µs2,520 bytes35,952 bytes
Wikimedia\Rdbms\DatabaseMysqlBase::fetchObject28342136,747 µs131,933 µs256 bytes0 bytes341,456 µs342,611 µs15,713,072 bytes13,030,120 bytes
Wikimedia\Rdbms\DatabaseMysqli::doQuery12131,578 µs29,887 µs4,771,976 bytes3,356,448 bytes131,757 µs30,069 µs4,772,488 bytes3,356,480 bytes
TranslateMetadata::preloadGroups18345116,983 µs114,734 µs-13,151,632 bytes1,179,176 bytes721,187 µs690,707 µs6,652,304 bytes17,582,128 bytes
MediaWikiTitleCodec::splitTitleString5522110,986 µs103,348 µs2,516,480 bytes2,783,424 bytes303,451 µs295,144 µs2,555,424 bytes3,280,024 bytes
ApiResult::validateValue@33883583,418 µs82,092 µs264,760 bytes0 bytes313,639 µs314,235 µs1,852,424 bytes0 bytes
ApiResult::isMetadataKey12229883,387 µs86,521 µs640 bytes1,696 bytes83,387 µs86,521 µs640 bytes1,696 bytes
UtfNormal\Validator::cleanUp3420682,315 µs83,814 µs1,930,744 bytes1,048 bytes123,655 µs126,429 µs1,930,872 bytes1,048 bytes

New run: https://performance.wikimedia.org/xhgui/run/view?id=5df0a9a13f3dfa4e51bf02a1
Comparison: https://performance.wikimedia.org/xhgui/run/compare?base=5dbad2613f3dfa7c5f89a004&head=5df0a9a13f3dfa4e51bf02a1

This is definitely fixed.

Pols12 renamed this task from Paginate group getting through Translate API for performance purposes to Improve message group selector performance reducing Translate API request time.Dec 11 2019, 12:20 PM
Pols12 awarded a token.