48 list( $cluster, $id, $itemID ) = $this->
parseURL( $url );
51 if ( $itemID !==
false &&
$ret !==
false ) {
52 return $ret->getItem( $itemID );
68 $batched = $inverseUrlMap = [];
69 foreach (
$urls as $url ) {
70 list( $cluster, $id, $itemID ) = $this->
parseURL( $url );
71 $batched[$cluster][$id][] = $itemID;
74 $inverseUrlMap[$cluster][$id][$itemID] = $url;
77 foreach ( $batched as $cluster => $batchByCluster ) {
81 foreach ( $batchByCluster[$id] as $itemID ) {
82 $url = $inverseUrlMap[$cluster][$id][$itemID];
83 if ( $itemID ===
false ) {
95 public function store( $location, $data ) {
97 $dbw->insert( $this->
getTable( $dbw ),
98 [
'blob_text' => $data ],
100 $id = $dbw->insertId();
102 throw new MWException( __METHOD__ .
': no insert ID' );
105 return "DB://$location/$id";
109 return ( $this->
getLoadBalancer( $location )->getReadOnlyReason() !==
false );
119 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
120 return $lbFactory->getExternalLB( $cluster );
133 $domainId = $this->
getDomainId( $lb->getServerInfo( $lb->getWriterIndex() ) );
136 wfDebug(
"read only external store\n" );
137 $lb->allowLagged(
true );
139 wfDebug(
"writable external store\n" );
142 $db = $lb->getConnectionRef(
DB_REPLICA, [], $domainId );
156 $domainId = $this->
getDomainId( $lb->getServerInfo( $lb->getWriterIndex() ) );
158 $db = $lb->getMaintenanceConnectionRef(
DB_MASTER, [], $domainId );
169 if ( isset( $this->params[
'wiki'] ) ) {
170 return $this->params[
'wiki'];
173 if ( isset( $server[
'dbname'] ) ) {
181 $server[
'schema'] ??
null,
182 $server[
'tablePrefix'] ??
''
185 return $domain->getId();
198 $table = $db->getLBInfo(
'blobs table' );
199 if ( is_null( $table ) ) {
222 static $externalBlobCache = [];
224 $cacheID = ( $itemID ===
false ) ?
"$cluster/$id" :
"$cluster/$id/";
225 if ( isset( $externalBlobCache[$cacheID] ) ) {
227 "ExternalStoreDB::fetchBlob cache hit on $cacheID" );
229 return $externalBlobCache[$cacheID];
233 "ExternalStoreDB::fetchBlob cache miss on $cacheID" );
237 'blob_text', [
'blob_id' => $id ], __METHOD__ );
238 if (
$ret ===
false ) {
240 "ExternalStoreDB::fetchBlob master fallback on $cacheID" );
244 'blob_text', [
'blob_id' => $id ], __METHOD__ );
245 if (
$ret ===
false ) {
247 "ExternalStoreDB::fetchBlob master failed to find $cacheID" );
250 if ( $itemID !==
false &&
$ret !==
false ) {
255 $externalBlobCache = [ $cacheID =>
$ret ];
271 [
'blob_id',
'blob_text' ], [
'blob_id' => array_keys( $ids ) ], __METHOD__ );
273 if (
$res !==
false ) {
278 " master fallback on '$cluster' for: " .
279 implode(
',', array_keys( $ids ) ) );
283 [
'blob_id',
'blob_text' ],
284 [
'blob_id' => array_keys( $ids ) ],
286 if (
$res ===
false ) {
287 wfDebugLog( __CLASS__, __METHOD__ .
" master failed on '$cluster'" );
294 " master on '$cluster' failed locating items: " .
295 implode(
',', array_keys( $ids ) ) );
308 foreach (
$res as $row ) {
310 $itemIDs = $ids[$id];
312 if ( count( $itemIDs ) === 1 && reset( $itemIDs ) ===
false ) {
314 $ret[$id] = $row->blob_text;
327 $path = explode(
'/', $url );
332 isset( $path[4] ) ? $path[4] :
false
unserialize( $serialized)
array $wgDefaultExternalStore
The place to put new revisions, false to put them in the local text table.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
DB accessible external objects.
getSlave( $cluster)
Get a replica DB connection for the specified cluster.
batchFetchBlobs( $cluster, array $ids)
Fetch multiple blob items out of the database.
mergeBatchResult(array &$ret, array &$ids, $res)
Helper function for self::batchFetchBlobs for merging master/replica DB results.
getDomainId(array $server)
getMaster( $cluster)
Get a master database connection for the specified cluster.
fetchBlob( $cluster, $id, $itemID)
Fetch a blob item out of the database; a cache of the last-loaded blob will be kept so that multiple ...
getTable( $db)
Get the 'blobs' table name for this database.
fetchFromURL( $url)
The provided URL is in the form of DB://cluster/id or DB://cluster/id/itemid for concatened storage.
store( $location, $data)
Insert a data item into a given location.
batchFetchFromURLs(array $urls)
Fetch data from given external store URLs.
isReadOnly( $location)
Check if a given location is read-only.
getLoadBalancer( $cluster)
Get a LoadBalancer for the specified cluster.
Accessable external objects in a particular storage medium.
Class to handle database/prefix specification for IDatabase domains.
Helper class to handle automatically marking connections as reusable (via RAII pattern) as well handl...
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
processing should stop and the error should be shown to the user * false