48 parent::__construct( $params );
49 if ( !isset( $params[
'lbFactory'] ) || !( $params[
'lbFactory'] instanceof
LBFactory ) ) {
50 throw new InvalidArgumentException(
"LBFactory required in 'lbFactory' field." );
52 $this->lbFactory = $params[
'lbFactory'];
67 $ret = $this->fetchBlob( $cluster, $id, $itemID );
69 if ( $itemID !==
false && $ret !==
false ) {
70 return $ret->getItem( $itemID );
87 $batched = $inverseUrlMap = [];
88 foreach ( $urls as
$url ) {
90 $batched[$cluster][$id][] = $itemID;
93 $inverseUrlMap[$cluster][$id][$itemID] =
$url;
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 ) {
105 $ret[
$url] = $blob->getItem( $itemID );
117 public function store( $location, $data ) {
118 $blobsTable = $this->
getTable( $location );
121 $dbw->newInsertQueryBuilder()
122 ->insertInto( $blobsTable )
123 ->row( [
'blob_text' => $data ] )
124 ->caller( __METHOD__ )->execute();
126 $id = $dbw->insertId();
131 return "DB://$location/$id";
138 if ( parent::isReadOnly( $location ) ) {
142 return ( $this->getLoadBalancer( $location )->getReadOnlyReason() !==
false );
151 private function getLoadBalancer( $cluster ) {
152 return $this->lbFactory->getExternalLB( $cluster );
163 $lb = $this->getLoadBalancer( $cluster );
165 return $lb->getConnection(
168 $this->getDomainId( $lb->getServerInfo( ServerInfo::WRITER_INDEX ) ),
169 $lb::CONN_TRX_AUTOCOMMIT
181 $lb = $this->getLoadBalancer( $cluster );
183 return $lb->getMaintenanceConnectionRef(
186 $this->getDomainId( $lb->getServerInfo( ServerInfo::WRITER_INDEX ) ),
187 $lb::CONN_TRX_AUTOCOMMIT
195 private function getDomainId( array $server ) {
196 if ( $this->isDbDomainExplicit ) {
197 return $this->dbDomain;
200 if ( isset( $server[
'dbname'] ) ) {
208 $server[
'schema'] ??
null,
209 $server[
'tablePrefix'] ??
''
212 return $domain->getId();
229 $lb = $this->getLoadBalancer( $cluster );
230 $info = $lb->getServerInfo( ServerInfo::WRITER_INDEX );
232 return $info[
'blobs table'] ??
'blobs';
244 static $supportedTypes = [
'mysql',
'sqlite' ];
247 if ( !in_array( $dbw->getType(), $supportedTypes,
true ) ) {
248 throw new DBUnexpectedError( $dbw,
"RDBMS type '{$dbw->getType()}' not supported." );
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'." );
257 $blobsTable = $this->
getTable( $cluster );
258 $encTable = $dbw->tableName( $blobsTable );
259 $sqlWithReplacedVars = str_replace(
260 [
'/*$wgDBprefix*/blobs',
'/*_*/blobs' ],
261 [ $encTable, $encTable ],
267 $sqlWithReplacedVars,
268 $dbw::QUERY_CHANGE_SCHEMA,
286 private function fetchBlob( $cluster, $id, $itemID ) {
293 static $externalBlobCache = [];
295 $cacheID = ( $itemID === false ) ?
"$cluster/$id" :
"$cluster/$id/";
296 $cacheID =
"$cacheID@{$this->dbDomain}";
298 if ( isset( $externalBlobCache[$cacheID] ) ) {
299 $this->logger->debug( __METHOD__ .
": cache hit on $cacheID" );
301 return $externalBlobCache[$cacheID];
304 $this->logger->debug( __METHOD__ .
": cache miss on $cacheID" );
306 $blobsTable = $this->
getTable( $cluster );
309 $ret = $dbr->newSelectQueryBuilder()
310 ->select(
'blob_text' )
311 ->from( $blobsTable )
312 ->where( [
'blob_id' => $id ] )
313 ->caller( __METHOD__ )->fetchField();
315 if ( $ret ===
false ) {
317 $this->logger->warning( __METHOD__ .
": primary DB fallback on $cacheID" );
318 $trxProfiler = $this->lbFactory->getTransactionProfiler();
319 $scope = $trxProfiler->silenceForScope( $trxProfiler::EXPECTATION_REPLICAS_ONLY );
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" );
331 if ( $itemID !==
false && $ret !==
false ) {
336 $externalBlobCache = [ $cacheID => $ret ];
349 private function batchFetchBlobs( $cluster, array $ids ) {
350 $blobsTable = $this->
getTable( $cluster );
353 $res = $dbr->newSelectQueryBuilder()
354 ->select( [
'blob_id',
'blob_text' ] )
355 ->from( $blobsTable )
356 ->where( [
'blob_id' => array_keys( $ids ) ] )
357 ->caller( __METHOD__ )
361 $this->mergeBatchResult( $ret, $ids, $res );
365 __METHOD__ .
": primary fallback on '$cluster' for: " .
366 implode(
',', array_keys( $ids ) )
368 $trxProfiler = $this->lbFactory->getTransactionProfiler();
369 $scope = $trxProfiler->silenceForScope( $trxProfiler::EXPECTATION_REPLICAS_ONLY );
371 $res = $dbw->newSelectQueryBuilder()
372 ->select( [
'blob_id',
'blob_text' ] )
373 ->from( $blobsTable )
374 ->where( [
'blob_id' => array_keys( $ids ) ] )
375 ->caller( __METHOD__ )
377 ScopedCallback::consume( $scope );
378 $this->mergeBatchResult( $ret, $ids, $res );
381 $this->logger->error(
382 __METHOD__ .
": primary on '$cluster' failed locating items: " .
383 implode(
',', array_keys( $ids ) )
396 private function mergeBatchResult( array &$ret, array &$ids, $res ) {
397 foreach ( $res as $row ) {
399 $itemIDs = $ids[$id];
401 if ( count( $itemIDs ) === 1 && reset( $itemIDs ) ===
false ) {
403 $ret[$id] = $row->blob_text;
433 $parts = explode(
'/',
$url );
434 return $parts[2] ??
null;
445 $lb = $this->getLoadBalancer( $cluster );
446 return $this->getDomainId( $lb->getServerInfo( ServerInfo::WRITER_INDEX ) );
static unserialize(string $str, bool $allowDouble=false)
Unserialize a HistoryBlob.
Base class for general text storage via the "object" flag in old_flags, or two-part external storage ...