You are browsing a read-only backup copy of Wikitech. The live site can be found at wikitech.wikimedia.org
Memcached for MediaWiki: Difference between revisions
imported>Wolfgang Kandek |
imported>Wolfgang Kandek (added links to mcrouter github) |
||
Line 4: | Line 4: | ||
This page is not about other Memcached clusters in production, such as those for [[Thumbor]], [[Wikimedia Cloud Services]], [[Wikitech|Wikitech wiki]], and [[Swift]]. | This page is not about other Memcached clusters in production, such as those for [[Thumbor]], [[Wikimedia Cloud Services]], [[Wikitech|Wikitech wiki]], and [[Swift]]. | ||
[[File:Wikipedia Memcached flow 2020.png|thumb|400x400px|Wikipedia's Memcached configuration as of November 2020. Detailing the use of additional "onhost" | [[File:Wikipedia Memcached flow 2020.png|thumb|400x400px|Wikipedia's Memcached configuration as of November 2020. Detailing the use of additional "onhost" memcached instances, local to MW web servers (handled via mcrouter route prefixes).]] | ||
== Service == | == Service == | ||
There are two logical pools of | There are two logical pools of memcached servers for MediaWiki: | ||
* '''Main''': The main pool for has 18 shards and runs on the <code>mc10XX</code> hosts (in [[Eqiad cluster|Eqiad]]) and <code>mc20XX</code> hosts (in [[Codfw cluster|Codfw]]). | * '''Main''': The main pool for has 18 [[:en:Shard_(database_architecture)|shards]] and runs on the <code>mc10XX</code> hosts (in [[Eqiad cluster|Eqiad]]) and <code>mc20XX</code> hosts (in [[Codfw cluster|Codfw]]). | ||
* '''Gutter''': The gutter pool has 3 shards and runs on the <code>mc-gp100x</code> and <code>mc-gp200x</code> hosts, which have 10Gbit/s NICs instead of 1Gbit/s. | * '''Gutter''': The gutter pool has 3 shards and runs on the <code>mc-gp100x</code> and <code>mc-gp200x</code> hosts, which have 10Gbit/s NICs instead of 1Gbit/s. | ||
See [[#Mcrouter]] for how these are used. | MediaWiki connects to memcached through a proxy called [https://github.com/facebook/mcrouter mcrouter], which provides a number of benefits such as such as connection pooling and failover functionality. See [[#Mcrouter]] for how these proxies are used. | ||
== Magic numbers == | == Magic numbers == | ||
Line 22: | Line 22: | ||
== WANObjectCache == | == WANObjectCache == | ||
'''WANObjectCache''' is the abstraction layer in MediaWiki PHP that deals with multi-datacenter concerns and | '''WANObjectCache''' is the abstraction layer in MediaWiki PHP that deals with multi-datacenter concerns and mcrouter. It builds on top of '''BagOStuff''' which is the generic key-value class that abstracts the memcached protocol itself. | ||
See also: | See also: | ||
Line 43: | Line 43: | ||
Cross-dc: | Cross-dc: | ||
* Purge traffic uses the <code>/*/mw-wan/</code> prefix to tell | * Purge traffic uses the <code>/*/mw-wan/</code> prefix to tell mcouter to broadcast this to other pools and clusters as well. The actual command is generally <code>SET</code> as it needs to induce a "hold-off" period using the tombstone (per the above). In rare cases where a hold-off is not needed (e.g. if the purge is not related to a DB write), then the broadcasted event will use <code>DELETE</code> | ||
=== Getting revision/page from WANObjectCache key === | === Getting revision/page from WANObjectCache key === | ||
Line 52: | Line 52: | ||
=== Service === | === Service === | ||
There is a local | There is a local mcrouter instance on every app server. | ||
There is also a cluster of 4-shard "'''Proxies'''" pool of | There is also a cluster of 4-shard "'''Proxies'''" pool of mcrouter instances in each data center for the purpose of receiving cross-dc memcached commands to then proxy further to the dc-local app servers accordingly. | ||
''TODO: Do these proxies also consider their dc-local gutterpool?'' | ''TODO: Do these proxies also consider their dc-local gutterpool?'' | ||
=== Routes === | === Routes === | ||
Each MediaWiki api/appserver sees memcached through a local proxy called [[Mcrouter]]<ref>[https://engineering.fb.com/web/introducing-mcrouter-a-memcached-protocol-router-for-scaling-memcached-deployments/ Introducing mcrouter: A memcached protocol router for scaling memcached deployments]</ref>. | Each MediaWiki api/appserver sees memcached through a local proxy called [[Mcrouter]]<ref>[https://engineering.fb.com/web/introducing-mcrouter-a-memcached-protocol-router-for-scaling-memcached-deployments/ Introducing mcrouter: A memcached protocol router for scaling memcached deployments]</ref>. Mcrouter introduces the concepts of [https://github.com/facebook/mcrouter/wiki/Prefix-routing-setup routes] and pools and each route applies consistent hashing on the key name to know where to send it, i.e. which of the 18 shards for memcached. | ||
There are several routes available | There are several routes available in our configuration, which are addressable via a route prefix that mcrouter strips from the key before forwarding the memcached command. | ||
# '''Main route'''. This route is declared as <code>/$region/mw/</code> but is not addressed by MediaWiki as such. It routes to the dc-local "Main" pool shards. If a shard is perceived as unavailable from an appserver ("TKO") the local | # '''Main route'''. This route is declared as <code>/$region/mw/</code> but is not addressed by MediaWiki as such. It routes to the dc-local "Main" pool shards. If a shard is perceived as unavailable from an appserver ("TKO") the local mcrouter forwards all commands (incl gets, sets, and locks) to a shard of the "Gutter" pool instead (see [[phab:T240684|T240684]], [[phab:T244852|T244852]]). | ||
#* This route is used by the majority of traffic, through <code>WANObjectCache::getWithSet</code> calls in MediaWiki. | #* This route is used by the majority of traffic, through <code>WANObjectCache::getWithSet</code> calls in MediaWiki. | ||
#* MediaWiki doesn't use the <code>/$region/mw/</code> prefix. Instead <code>/$region/mw/</code> is the default route and MediaWiki sends these commands without any routing prefix. | #* MediaWiki doesn't use the <code>/$region/mw/</code> prefix. Instead <code>/$region/mw/</code> is the default route and MediaWiki sends these commands without any routing prefix. | ||
Line 72: | Line 72: | ||
=== Example === | === Example === | ||
The memcached key <code>WANCache:v:metawiki:translate-groups</code> (belongs to the [[mw:Extension:Translate|Translate extension]]) is formatted by the WANObjectCache library. When Translate wants to get the value of this key, WANObjectCache will send a <code>GET</code> command from MediaWiki to <code>localhost:11213</code>, where mcrouter is listening. The command is then further routed to <code>mc1022</code> (based on key hashing). MediaWiki it totally ignorant about the <code>mc[1,2]0XX</code> host, it only knows about sending commands to a localhost port. A mcrouter admin command helps figure out where keys are hashed/routed to:<syntaxhighlight lang="bash"> | |||
The | |||
elukey@mw1345:~$ echo "get __mcrouter__.route(get,WANCache:v:metawiki:translate-groups)" | nc localhost 11213 -q 2 | elukey@mw1345:~$ echo "get __mcrouter__.route(get,WANCache:v:metawiki:translate-groups)" | nc localhost 11213 -q 2 | ||
VALUE __mcrouter__.route(get,WANCache:v:metawiki:translate-groups) 0 16 | VALUE __mcrouter__.route(get,WANCache:v:metawiki:translate-groups) 0 16 | ||
Line 84: | Line 82: | ||
</syntaxhighlight>Some things to notice: | </syntaxhighlight>Some things to notice: | ||
* The special prefix <code>__mcrouter__.route</code> is intercepted by | * The special prefix <code>__mcrouter__.route</code> is intercepted by mcrouter. These are admin commands, for which proxy returns directly without contacting the memcached hosts. This function returns the target of the consistent hashing of the key name. | ||
* Mcrouter listens on port 11213 on all MediaWiki [[Application servers|app servers]], meanwhile on every <code>mc10XX</code> host memcached listens on port 11211. | * Mcrouter listens on port 11213 on all MediaWiki [[Application servers|app servers]], meanwhile on every <code>mc10XX</code> host memcached listens on port 11211. | ||
Revision as of 16:25, 12 March 2021
This page is about Memcached for MediaWiki.
This page is not about other Memcached clusters in production, such as those for Thumbor, Wikimedia Cloud Services, Wikitech wiki, and Swift.
Service
There are two logical pools of memcached servers for MediaWiki:
- Main: The main pool for has 18 shards and runs on the
mc10XX
hosts (in Eqiad) andmc20XX
hosts (in Codfw). - Gutter: The gutter pool has 3 shards and runs on the
mc-gp100x
andmc-gp200x
hosts, which have 10Gbit/s NICs instead of 1Gbit/s.
MediaWiki connects to memcached through a proxy called mcrouter, which provides a number of benefits such as such as connection pooling and failover functionality. See #Mcrouter for how these proxies are used.
Magic numbers
- WANCache (last updated: May 2020.)
- Tombstone (aka "hold-off TTL"): 11 seconds.
- Interim value: 1 second.
- Mcrouter
- Gutter TTL: upto 5 minutes (gutter_ttl).
WANObjectCache
WANObjectCache is the abstraction layer in MediaWiki PHP that deals with multi-datacenter concerns and mcrouter. It builds on top of BagOStuff which is the generic key-value class that abstracts the memcached protocol itself.
See also:
- WANObjectCache high-level documentation
- WANObjectCache metrics and internal details
- mw:Manual:Object_cache: what kind of data is stored here, how it gets there etc.
High level
- Like a replica. There is generally no proactive setting of values during HTTP write actions. Instead, values are computed based on information from replica DBs, and computed on-demand using the
getWithSet(key, ttl, callable)
idiom. This means the application generally only expects cache values to be as up to date as a replica DB would be. Historically, it was common for MediaWiki to populate its cache during HTTP write actions instead. This meant that in a single-DC setup it could loosely be expected that the cache was as up-to-date as the master DB. As part of the multi-dc effort, this was changed starting in 2015, and thus its expectations were loosened to that of a replica DB. - No synchronisation. MediaWiki's WANObjectCache layer does not require synchronisation of cached values across data centers. Instead, it considers each datacenter's Memcached cluster as independent. Each populating its own values as-needed on dc-local app servers from dc-local replica DBs.
- Tombstones (broadcasted purge). During HTTP write actions, MediaWiki asks WANObjectCache to purge cache keys of which it has modified the source data. These purges take the form of short-lived Memcached keys known as "tombstones". We do not use the
DELETE
command because we want each data center to be able to populate its memcached independently, thus requiring no cross-dc master database connection, thus reading from a local replica, thus values ingested in the cache may be as stale as a replica can be. Implementing a Memcached purge asDELETE
would mean both in the same DC and other DCs, the same key could be re-populated immediately with the same stale value we just deleted. Instead, WANObjectCache formulates its purge as aSET
operation that stores a placeholder value known as a "tombstone" (lasts for approx. 10 seconds for local and remote replica DBs to catch up). - Interim values. Upon seeing such tombstone, WANObjectCache acts much like a cache miss, except that the newly computed value is not written back over the tombstone (as the computed value may be stale). Instead, to avoid a recompute stampede these maybe-stale values are stored as an "interim value" in a sister key which is only kept for a few seconds.
Memcached commands
Intra-dc:
- Read traffic from the
getWithSet
idiom results in aGETS
command (getMulti) that fetches the main key, plus any sister keys that might exist. - Write trafffic from the
getWithSet
idiom results in eitherADD
if the key was known to be absent, orMemcached->mergeViaCas
if a value existed but either required (or was elected for) regeneration.
Cross-dc:
- Purge traffic uses the
/*/mw-wan/
prefix to tell mcouter to broadcast this to other pools and clusters as well. The actual command is generallySET
as it needs to induce a "hold-off" period using the tombstone (per the above). In rare cases where a hold-off is not needed (e.g. if the purge is not related to a DB write), then the broadcasted event will useDELETE
Getting revision/page from WANObjectCache key
If you're trying to track down the specific revision text given an SqlBlobStore key, the somewhat convoluted procedure is documented at mw:Manual:Caching#Revision_text.
Mcrouter
- Main article: Memcached for MediaWiki/mcrouter
Service
There is a local mcrouter instance on every app server.
There is also a cluster of 4-shard "Proxies" pool of mcrouter instances in each data center for the purpose of receiving cross-dc memcached commands to then proxy further to the dc-local app servers accordingly.
TODO: Do these proxies also consider their dc-local gutterpool?
Routes
Each MediaWiki api/appserver sees memcached through a local proxy called Mcrouter[1]. Mcrouter introduces the concepts of routes and pools and each route applies consistent hashing on the key name to know where to send it, i.e. which of the 18 shards for memcached.
There are several routes available in our configuration, which are addressable via a route prefix that mcrouter strips from the key before forwarding the memcached command.
- Main route. This route is declared as
/$region/mw/
but is not addressed by MediaWiki as such. It routes to the dc-local "Main" pool shards. If a shard is perceived as unavailable from an appserver ("TKO") the local mcrouter forwards all commands (incl gets, sets, and locks) to a shard of the "Gutter" pool instead (see T240684, T244852).- This route is used by the majority of traffic, through
WANObjectCache::getWithSet
calls in MediaWiki. - MediaWiki doesn't use the
/$region/mw/
prefix. Instead/$region/mw/
is the default route and MediaWiki sends these commands without any routing prefix. - Switchover to and from the gutterpool is decided by Mcrouter locally (per-appserver), it is not centrally coordinated. The keys stored in a gutter server have a reduced TTL.
- This route is used by the majority of traffic, through
- WAN route. This route is declared as
/$region/mw-wan/
. It routes to the dc-local "Main" pool shards as well as the "Proxies" for all non-local DCs.- This route is for internal use by MediaWiki's WANObjectCache to broadcast its purges ("tombstones"). This happens from calls to
WANObjectCache::purge
(invalidates a single key) orWANObjectCache::touchCheckKey
(effectively invalidate many keys, through a shared "check" key; somewhat like the Varnish XKey mechanism). - This route is not used for storing "regular" values is not exposed to any generic
WANObjectCache::getWithSet
orBagOStuff
calls.
- This route is for internal use by MediaWiki's WANObjectCache to broadcast its purges ("tombstones"). This happens from calls to
Example
The memcached key WANCache:v:metawiki:translate-groups
(belongs to the Translate extension) is formatted by the WANObjectCache library. When Translate wants to get the value of this key, WANObjectCache will send a GET
command from MediaWiki to localhost:11213
, where mcrouter is listening. The command is then further routed to mc1022
(based on key hashing). MediaWiki it totally ignorant about the mc[1,2]0XX
host, it only knows about sending commands to a localhost port. A mcrouter admin command helps figure out where keys are hashed/routed to:
elukey@mw1345:~$ echo "get __mcrouter__.route(get,WANCache:v:metawiki:translate-groups)" | nc localhost 11213 -q 2
VALUE __mcrouter__.route(get,WANCache:v:metawiki:translate-groups) 0 16
10.64.0.83:11211
END
elukey@mw1345:~$ dig -x 10.64.0.83 +short
mc1022.eqiad.wmnet.
Some things to notice:
- The special prefix
__mcrouter__.route
is intercepted by mcrouter. These are admin commands, for which proxy returns directly without contacting the memcached hosts. This function returns the target of the consistent hashing of the key name. - Mcrouter listens on port 11213 on all MediaWiki app servers, meanwhile on every
mc10XX
host memcached listens on port 11211.
To get a key and dump it to a file it is sufficient to:
elukey@mw1345:~$ echo "get WANCache:v:metawiki:translate-groups" | nc localhost 11213 -q 2 > dump.txt
elukey@mw1345:~$ du -hs dump.txt
380K dump.txt
In this case the key's value is pretty big, and it needs PHP to be interpreted correctly (to unserialize it), but nonetheless we got some useful information (like the size of the key). This could be useful when it is necessary to quickly get how big a key is, rather than knowing its content.