3 * External storage in SQL database.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
24 * DB accessable external objects.
26 * In this system, each store "location" maps to a database "cluster".
27 * The clusters must be defined in the normal LBFactory configuration.
29 * @ingroup ExternalStorage
31 class ExternalStoreDB
extends ExternalStoreMedium
{
33 * The provided URL is in the form of DB://cluster/id
34 * or DB://cluster/id/itemid for concatened storage.
37 * @return string|bool False if missing
38 * @see ExternalStoreMedium::fetchFromURL()
40 public function fetchFromURL( $url ) {
41 list( $cluster, $id, $itemID ) = $this->parseURL( $url );
42 $ret = $this->fetchBlob( $cluster, $id, $itemID );
44 if ( $itemID !== false && $ret !== false ) {
45 return $ret->getItem( $itemID );
52 * Fetch data from given external store URLs.
53 * The provided URLs are in the form of DB://cluster/id
54 * or DB://cluster/id/itemid for concatened storage.
56 * @param array $urls An array of external store URLs
57 * @return array A map from url to stored content. Failed results
58 * are not represented.
60 public function batchFetchFromURLs( array $urls ) {
61 $batched = $inverseUrlMap = [];
62 foreach ( $urls as $url ) {
63 list( $cluster, $id, $itemID ) = $this->parseURL( $url );
64 $batched[$cluster][$id][] = $itemID;
65 // false $itemID gets cast to int, but should be ok
66 // since we do === from the $itemID in $batched
67 $inverseUrlMap[$cluster][$id][$itemID] = $url;
70 foreach ( $batched as $cluster => $batchByCluster ) {
71 $res = $this->batchFetchBlobs( $cluster, $batchByCluster );
72 /** @var HistoryBlob $blob */
73 foreach ( $res as $id => $blob ) {
74 foreach ( $batchByCluster[$id] as $itemID ) {
75 $url = $inverseUrlMap[$cluster][$id][$itemID];
76 if ( $itemID === false ) {
79 $ret[$url] = $blob->getItem( $itemID );
88 public function store( $location, $data ) {
89 $dbw = $this->getMaster( $location );
90 $id = $dbw->nextSequenceValue( 'blob_blob_id_seq' );
91 $dbw->insert( $this->getTable( $dbw ),
92 [ 'blob_id' => $id, 'blob_text' => $data ],
94 $id = $dbw->insertId();
96 throw new MWException( __METHOD__
. ': no insert ID' );
99 return "DB://$location/$id";
103 * Get a LoadBalancer for the specified cluster
105 * @param string $cluster Cluster name
106 * @return LoadBalancer
108 private function getLoadBalancer( $cluster ) {
109 $wiki = isset( $this->params
['wiki'] ) ?
$this->params
['wiki'] : false;
111 return wfGetLBFactory()->getExternalLB( $cluster, $wiki );
115 * Get a replica DB connection for the specified cluster
117 * @param string $cluster Cluster name
120 public function getSlave( $cluster ) {
121 global $wgDefaultExternalStore;
123 $wiki = isset( $this->params
['wiki'] ) ?
$this->params
['wiki'] : false;
124 $lb = $this->getLoadBalancer( $cluster );
126 if ( !in_array( "DB://" . $cluster, (array)$wgDefaultExternalStore ) ) {
127 wfDebug( "read only external store\n" );
128 $lb->allowLagged( true );
130 wfDebug( "writable external store\n" );
133 $db = $lb->getConnectionRef( DB_REPLICA
, [], $wiki );
134 $db->clearFlag( DBO_TRX
); // sanity
140 * Get a master database connection for the specified cluster
142 * @param string $cluster Cluster name
143 * @return MaintainableDBConnRef
145 public function getMaster( $cluster ) {
146 $wiki = isset( $this->params
['wiki'] ) ?
$this->params
['wiki'] : false;
147 $lb = $this->getLoadBalancer( $cluster );
149 $db = $lb->getMaintenanceConnectionRef( DB_MASTER
, [], $wiki );
150 $db->clearFlag( DBO_TRX
); // sanity
156 * Get the 'blobs' table name for this database
158 * @param IDatabase $db
159 * @return string Table name ('blobs' by default)
161 public function getTable( $db ) {
162 $table = $db->getLBInfo( 'blobs table' );
163 if ( is_null( $table ) ) {
171 * Fetch a blob item out of the database; a cache of the last-loaded
172 * blob will be kept so that multiple loads out of a multi-item blob
173 * can avoid redundant database access and decompression.
174 * @param string $cluster
176 * @param string $itemID
177 * @return HistoryBlob|bool Returns false if missing
179 private function fetchBlob( $cluster, $id, $itemID ) {
181 * One-step cache variable to hold base blobs; operations that
182 * pull multiple revisions may often pull multiple times from
183 * the same blob. By keeping the last-used one open, we avoid
184 * redundant unserialization and decompression overhead.
186 static $externalBlobCache = [];
188 $cacheID = ( $itemID === false ) ?
"$cluster/$id" : "$cluster/$id/";
189 if ( isset( $externalBlobCache[$cacheID] ) ) {
190 wfDebugLog( 'ExternalStoreDB-cache',
191 "ExternalStoreDB::fetchBlob cache hit on $cacheID" );
193 return $externalBlobCache[$cacheID];
196 wfDebugLog( 'ExternalStoreDB-cache',
197 "ExternalStoreDB::fetchBlob cache miss on $cacheID" );
199 $dbr = $this->getSlave( $cluster );
200 $ret = $dbr->selectField( $this->getTable( $dbr ),
201 'blob_text', [ 'blob_id' => $id ], __METHOD__
);
202 if ( $ret === false ) {
203 wfDebugLog( 'ExternalStoreDB',
204 "ExternalStoreDB::fetchBlob master fallback on $cacheID" );
206 $dbw = $this->getMaster( $cluster );
207 $ret = $dbw->selectField( $this->getTable( $dbw ),
208 'blob_text', [ 'blob_id' => $id ], __METHOD__
);
209 if ( $ret === false ) {
210 wfDebugLog( 'ExternalStoreDB',
211 "ExternalStoreDB::fetchBlob master failed to find $cacheID" );
214 if ( $itemID !== false && $ret !== false ) {
215 // Unserialise object; caller extracts item
216 $ret = unserialize( $ret );
219 $externalBlobCache = [ $cacheID => $ret ];
225 * Fetch multiple blob items out of the database
227 * @param string $cluster A cluster name valid for use with LBFactory
228 * @param array $ids A map from the blob_id's to look for to the requested itemIDs in the blobs
229 * @return array A map from the blob_id's requested to their content.
230 * Unlocated ids are not represented
232 private function batchFetchBlobs( $cluster, array $ids ) {
233 $dbr = $this->getSlave( $cluster );
234 $res = $dbr->select( $this->getTable( $dbr ),
235 [ 'blob_id', 'blob_text' ], [ 'blob_id' => array_keys( $ids ) ], __METHOD__
);
237 if ( $res !== false ) {
238 $this->mergeBatchResult( $ret, $ids, $res );
241 wfDebugLog( __CLASS__
, __METHOD__
.
242 " master fallback on '$cluster' for: " .
243 implode( ',', array_keys( $ids ) ) );
245 $dbw = $this->getMaster( $cluster );
246 $res = $dbw->select( $this->getTable( $dbr ),
247 [ 'blob_id', 'blob_text' ],
248 [ 'blob_id' => array_keys( $ids ) ],
250 if ( $res === false ) {
251 wfDebugLog( __CLASS__
, __METHOD__
. " master failed on '$cluster'" );
253 $this->mergeBatchResult( $ret, $ids, $res );
257 wfDebugLog( __CLASS__
, __METHOD__
.
258 " master on '$cluster' failed locating items: " .
259 implode( ',', array_keys( $ids ) ) );
266 * Helper function for self::batchFetchBlobs for merging master/replica DB results
267 * @param array &$ret Current self::batchFetchBlobs return value
268 * @param array &$ids Map from blob_id to requested itemIDs
269 * @param mixed $res DB result from Database::select
271 private function mergeBatchResult( array &$ret, array &$ids, $res ) {
272 foreach ( $res as $row ) {
274 $itemIDs = $ids[$id];
275 unset( $ids[$id] ); // to track if everything is found
276 if ( count( $itemIDs ) === 1 && reset( $itemIDs ) === false ) {
277 // single result stored per blob
278 $ret[$id] = $row->blob_text
;
280 // multi result stored per blob
281 $ret[$id] = unserialize( $row->blob_text
);
290 protected function parseURL( $url ) {
291 $path = explode( '/', $url );
296 isset( $path[4] ) ?
$path[4] : false // itemID