MediaWiki master
ExternalStoreDB.php
Go to the documentation of this file.
1<?php
27use Wikimedia\ScopedCallback;
28
40 private $lbFactory;
41
47 public function __construct( array $params ) {
48 parent::__construct( $params );
49 if ( !isset( $params['lbFactory'] ) || !( $params['lbFactory'] instanceof LBFactory ) ) {
50 throw new InvalidArgumentException( "LBFactory required in 'lbFactory' field." );
51 }
52 $this->lbFactory = $params['lbFactory'];
53 }
54
65 public function fetchFromURL( $url ) {
66 [ $cluster, $id, $itemID ] = $this->parseURL( $url );
67 $ret = $this->fetchBlob( $cluster, $id, $itemID );
68
69 if ( $itemID !== false && $ret !== false ) {
70 return $ret->getItem( $itemID );
71 }
72
73 return $ret;
74 }
75
86 public function batchFetchFromURLs( array $urls ) {
87 $batched = $inverseUrlMap = [];
88 foreach ( $urls as $url ) {
89 [ $cluster, $id, $itemID ] = $this->parseURL( $url );
90 $batched[$cluster][$id][] = $itemID;
91 / false $itemID gets cast to int, but should be ok
92 / since we do === from the $itemID in $batched
93 $inverseUrlMap[$cluster][$id][$itemID] = $url;
94 }
95 $ret = [];
96 foreach ( $batched as $cluster => $batchByCluster ) {
97 $res = $this->batchFetchBlobs( $cluster, $batchByCluster );
99 foreach ( $res as $id => $blob ) {
100 foreach ( $batchByCluster[$id] as $itemID ) {
101 $url = $inverseUrlMap[$cluster][$id][$itemID];
102 if ( $itemID === false ) {
103 $ret[$url] = $blob;
104 } else {
105 $ret[$url] = $blob->getItem( $itemID );
106 }
107 }
108 }
109 }
110
111 return $ret;
112 }
113
117 public function store( $location, $data ) {
118 $blobsTable = $this->getTable( $location );
119
120 $dbw = $this->getPrimary( $location );
121 $dbw->newInsertQueryBuilder()
122 ->insertInto( $blobsTable )
123 ->row( [ 'blob_text' => $data ] )
124 ->caller( __METHOD__ )->execute();
125
126 $id = $dbw->insertId();
127 if ( !$id ) {
128 throw new ExternalStoreException( __METHOD__ . ': no insert ID' );
129 }
130
131 return "DB://$location/$id";
132 }
133
137 public function isReadOnly( $location ) {
138 if ( parent::isReadOnly( $location ) ) {
139 return true;
140 }
141
142 return ( $this->getLoadBalancer( $location )->getReadOnlyReason() !== false );
143 }
144
151 private function getLoadBalancer( $cluster ) {
152 return $this->lbFactory->getExternalLB( $cluster );
153 }
154
162 public function getReplica( $cluster ) {
163 $lb = $this->getLoadBalancer( $cluster );
164
165 return $lb->getConnection(
167 [],
168 $this->getDomainId( $lb->getServerInfo( ServerInfo::WRITER_INDEX ) ),
169 $lb::CONN_TRX_AUTOCOMMIT
170 );
171 }
172
180 public function getPrimary( $cluster ) {
181 $lb = $this->getLoadBalancer( $cluster );
182
183 return $lb->getMaintenanceConnectionRef(
185 [],
186 $this->getDomainId( $lb->getServerInfo( ServerInfo::WRITER_INDEX ) ),
187 $lb::CONN_TRX_AUTOCOMMIT
188 );
189 }
190
195 private function getDomainId( array $server ) {
196 if ( $this->isDbDomainExplicit ) {
197 return $this->dbDomain; / explicit foreign domain
198 }
199
200 if ( isset( $server['dbname'] ) ) {
201 / T200471: for b/c, treat any "dbname" field as forcing which database to use.
202 / MediaWiki/LoadBalancer previously did not enforce any concept of a local DB
203 / domain, but rather assumed that the LB server configuration matched $wgDBname.
204 / This check is useful when the external storage DB for this cluster does not use
205 / the same name as the corresponding "main" DB(s) for wikis.
206 $domain = new DatabaseDomain(
207 $server['dbname'],
208 $server['schema'] ?? null,
209 $server['tablePrefix'] ?? ''
210 );
211
212 return $domain->getId();
213 }
214
215 return false; / local LB domain
216 }
217
228 public function getTable( string $cluster ) {
229 $lb = $this->getLoadBalancer( $cluster );
230 $info = $lb->getServerInfo( ServerInfo::WRITER_INDEX );
231
232 return $info['blobs table'] ?? 'blobs';
233 }
234
241 public function initializeTable( $cluster ) {
242 global $IP;
243
244 static $supportedTypes = [ 'mysql', 'sqlite' ];
245
246 $dbw = $this->getPrimary( $cluster );
247 if ( !in_array( $dbw->getType(), $supportedTypes, true ) ) {
248 throw new DBUnexpectedError( $dbw, "RDBMS type '{$dbw->getType()}' not supported." );
249 }
250
251 $sqlFilePath = "$IP/maintenance/storage/blobs.sql";
252 $sql = file_get_contents( $sqlFilePath );
253 if ( $sql === false ) {
254 throw new RuntimeException( "Failed to read '$sqlFilePath'." );
255 }
256
257 $blobsTable = $this->getTable( $cluster );
258 $encTable = $dbw->tableName( $blobsTable );
259 $sqlWithReplacedVars = str_replace(
260 [ '/*$wgDBprefix*/blobs', '/*_*/blobs' ],
261 [ $encTable, $encTable ],
262 $sql
263 );
264
265 $dbw->query(
266 new Query(
267 $sqlWithReplacedVars,
268 $dbw::QUERY_CHANGE_SCHEMA,
269 'CREATE',
270 $blobsTable,
271 $sqlWithReplacedVars
272 ),
273 __METHOD__
274 );
275 }
276
286 private function fetchBlob( $cluster, $id, $itemID ) {
293 static $externalBlobCache = [];
294
295 $cacheID = ( $itemID === false ) ? "$cluster/$id" : "$cluster/$id/";
296 $cacheID = "$cacheID@{$this->dbDomain}";
297
298 if ( isset( $externalBlobCache[$cacheID] ) ) {
299 $this->logger->debug( __METHOD__ . ": cache hit on $cacheID" );
300
301 return $externalBlobCache[$cacheID];
302 }
303
304 $this->logger->debug( __METHOD__ . ": cache miss on $cacheID" );
305
306 $blobsTable = $this->getTable( $cluster );
307
308 $dbr = $this->getReplica( $cluster );
309 $ret = $dbr->newSelectQueryBuilder()
310 ->select( 'blob_text' )
311 ->from( $blobsTable )
312 ->where( [ 'blob_id' => $id ] )
313 ->caller( __METHOD__ )->fetchField();
314
315 if ( $ret === false ) {
316 / Try the primary DB
317 $this->logger->warning( __METHOD__ . ": primary DB fallback on $cacheID" );
318 $trxProfiler = $this->lbFactory->getTransactionProfiler();
319 $scope = $trxProfiler->silenceForScope( $trxProfiler::EXPECTATION_REPLICAS_ONLY );
320 $dbw = $this->getPrimary( $cluster );
321 $ret = $dbw->newSelectQueryBuilder()
322 ->select( 'blob_text' )
323 ->from( $blobsTable )
324 ->where( [ 'blob_id' => $id ] )
325 ->caller( __METHOD__ )->fetchField();
326 ScopedCallback::consume( $scope );
327 if ( $ret === false ) {
328 $this->logger->warning( __METHOD__ . ": primary DB failed to find $cacheID" );
329 }
330 }
331 if ( $itemID !== false && $ret !== false ) {
332 / Unserialise object; caller extracts item
333 $ret = HistoryBlobUtils::unserialize( $ret );
334 }
335
336 $externalBlobCache = [ $cacheID => $ret ];
337
338 return $ret;
339 }
340
349 private function batchFetchBlobs( $cluster, array $ids ) {
350 $blobsTable = $this->getTable( $cluster );
351
352 $dbr = $this->getReplica( $cluster );
353 $res = $dbr->newSelectQueryBuilder()
354 ->select( [ 'blob_id', 'blob_text' ] )
355 ->from( $blobsTable )
356 ->where( [ 'blob_id' => array_keys( $ids ) ] )
357 ->caller( __METHOD__ )
358 ->fetchResultSet();
359
360 $ret = [];
361 $this->mergeBatchResult( $ret, $ids, $res );
362 if ( $ids ) {
363 / Try the primary
364 $this->logger->info(
365 __METHOD__ . ": primary fallback on '$cluster' for: " .
366 implode( ',', array_keys( $ids ) )
367 );
368 $trxProfiler = $this->lbFactory->getTransactionProfiler();
369 $scope = $trxProfiler->silenceForScope( $trxProfiler::EXPECTATION_REPLICAS_ONLY );
370 $dbw = $this->getPrimary( $cluster );
371 $res = $dbw->newSelectQueryBuilder()
372 ->select( [ 'blob_id', 'blob_text' ] )
373 ->from( $blobsTable )
374 ->where( [ 'blob_id' => array_keys( $ids ) ] )
375 ->caller( __METHOD__ )
376 ->fetchResultSet();
377 ScopedCallback::consume( $scope );
378 $this->mergeBatchResult( $ret, $ids, $res );
379 }
380 if ( $ids ) {
381 $this->logger->error(
382 __METHOD__ . ": primary on '$cluster' failed locating items: " .
383 implode( ',', array_keys( $ids ) )
384 );
385 }
386
387 return $ret;
388 }
389
396 private function mergeBatchResult( array &$ret, array &$ids, $res ) {
397 foreach ( $res as $row ) {
398 $id = $row->blob_id;
399 $itemIDs = $ids[$id];
400 unset( $ids[$id] ); / to track if everything is found
401 if ( count( $itemIDs ) === 1 && reset( $itemIDs ) === false ) {
402 / single result stored per blob
403 $ret[$id] = $row->blob_text;
404 } else {
405 / multi result stored per blob
406 $ret[$id] = HistoryBlobUtils::unserialize( $row->blob_text );
407 }
408 }
409 }
410
415 protected function parseURL( $url ) {
416 $path = explode( '/', $url );
417
418 return [
419 $path[2], / cluster
420 $path[3], / id
421 $path[4] ?? false / itemID
422 ];
423 }
424
432 public function getClusterForUrl( $url ) {
433 $parts = explode( '/', $url );
434 return $parts[2] ?? null;
435 }
436
444 public function getDomainIdForCluster( $cluster ) {
445 $lb = $this->getLoadBalancer( $cluster );
446 return $this->getDomainId( $lb->getServerInfo( ServerInfo::WRITER_INDEX ) );
447 }
448}
if(!defined( 'MEDIAWIKI')) if(ini_get('mbstring.func_overload')) if(!defined( 'MW_ENTRY_POINT')) global $IP
Environment checks.
Definition Setup.php:108
External storage in a SQL database.
getPrimary( $cluster)
Get a primary database connection for the specified cluster.
__construct(array $params)
getDomainIdForCluster( $cluster)
Get the domain ID for a given cluster, which is false for the local wiki ID.
getTable(string $cluster)
Get the configured blobs table name for this database.
getReplica( $cluster)
Get a replica DB connection for the specified cluster.
getClusterForUrl( $url)
Get the cluster part of a URL.
initializeTable( $cluster)
Create the appropriate blobs table on this cluster.
fetchFromURL( $url)
Fetch data from given external store URL.
store( $location, $data)
Insert a data item into a given location.string|bool The URL of the stored data item,...
batchFetchFromURLs(array $urls)
Fetch multiple URLs from given external store.
isReadOnly( $location)
Check if a given location is read-only.bool Whether this location is read-only 1.31
Base class for external storage.
static unserialize(string $str, bool $allowDouble=false)
Unserialize a HistoryBlob.
Class to handle database/schema/prefix specifications for IDatabase.
Holds information on Query to be executed.
Definition Query.php:31
Container for accessing information about the database servers in a database cluster.
Base class for general text storage via the "object" flag in old_flags, or two-part external storage ...
This class is a delegate to ILBFactory for a given database cluster.
const DB_REPLICA
Definition defines.php:26
const DB_PRIMARY
Definition defines.php:28

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant