3 * Generator of database load balancing objects.
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 namespace Wikimedia\Rdbms
;
26 use Psr\Log\LoggerAwareInterface
;
27 use Psr\Log\LoggerInterface
;
28 use Psr\Log\NullLogger
;
29 use Wikimedia\WaitConditionLoop
;
35 * Class for ensuring a consistent ordering of events as seen by the user, despite replication.
36 * Kind of like Hawking's [[Chronology Protection Agency]].
38 class ChronologyProtector
implements LoggerAwareInterface
{
41 /** @var LoggerInterface */
44 /** @var string Storage key name */
46 /** @var string Hash of client parameters */
48 /** @var float|null Minimum UNIX timestamp of 1+ expected startup positions */
49 protected $waitForPosTime;
50 /** @var int Max seconds to wait on positions to appear */
51 protected $waitForPosTimeout = self
::POS_WAIT_TIMEOUT
;
52 /** @var bool Whether to no-op all method calls */
53 protected $enabled = true;
54 /** @var bool Whether to check and wait on positions */
55 protected $wait = true;
57 /** @var bool Whether the client data was loaded */
58 protected $initialized = false;
59 /** @var DBMasterPos[] Map of (DB master name => position) */
60 protected $startupPositions = [];
61 /** @var DBMasterPos[] Map of (DB master name => position) */
62 protected $shutdownPositions = [];
63 /** @var float[] Map of (DB master name => 1) */
64 protected $shutdownTouchDBs = [];
66 /** @var integer Seconds to store positions */
67 const POSITION_TTL
= 60;
68 /** @var integer Max time to wait for positions to appear */
69 const POS_WAIT_TIMEOUT
= 5;
72 * @param BagOStuff $store
73 * @param array $client Map of (ip: <IP>, agent: <user-agent>)
74 * @param float $posTime UNIX timestamp
77 public function __construct( BagOStuff
$store, array $client, $posTime = null ) {
78 $this->store
= $store;
79 $this->clientId
= md5( $client['ip'] . "\n" . $client['agent'] );
80 $this->key
= $store->makeGlobalKey( __CLASS__
, $this->clientId
);
81 $this->waitForPosTime
= $posTime;
82 $this->logger
= new NullLogger();
85 public function setLogger( LoggerInterface
$logger ) {
86 $this->logger
= $logger;
90 * @param bool $enabled Whether to no-op all method calls
93 public function setEnabled( $enabled ) {
94 $this->enabled
= $enabled;
98 * @param bool $enabled Whether to check and wait on positions
101 public function setWaitEnabled( $enabled ) {
102 $this->wait
= $enabled;
106 * Initialise a ILoadBalancer to give it appropriate chronology protection.
108 * If the stash has a previous master position recorded, this will try to
109 * make sure that the next query to a replica DB of that master will see changes up
110 * to that position by delaying execution. The delay may timeout and allow stale
111 * data if no non-lagged replica DBs are available.
113 * @param ILoadBalancer $lb
116 public function initLB( ILoadBalancer
$lb ) {
117 if ( !$this->enabled ||
$lb->getServerCount() <= 1 ) {
118 return; // non-replicated setup or disabled
121 $this->initPositions();
123 $masterName = $lb->getServerName( $lb->getWriterIndex() );
124 if ( !empty( $this->startupPositions
[$masterName] ) ) {
125 $pos = $this->startupPositions
[$masterName];
126 $this->logger
->info( __METHOD__
. ": LB for '$masterName' set to pos $pos\n" );
127 $lb->waitFor( $pos );
132 * Notify the ChronologyProtector that the ILoadBalancer is about to shut
133 * down. Saves replication positions.
135 * @param ILoadBalancer $lb
138 public function shutdownLB( ILoadBalancer
$lb ) {
139 if ( !$this->enabled
) {
140 return; // not enabled
141 } elseif ( !$lb->hasOrMadeRecentMasterChanges( INF
) ) {
142 // Only save the position if writes have been done on the connection
146 $masterName = $lb->getServerName( $lb->getWriterIndex() );
147 if ( $lb->getServerCount() > 1 ) {
148 $pos = $lb->getMasterPos();
149 $this->logger
->info( __METHOD__
. ": LB for '$masterName' has pos $pos\n" );
150 $this->shutdownPositions
[$masterName] = $pos;
152 $this->logger
->info( __METHOD__
. ": DB '$masterName' touched\n" );
154 $this->shutdownTouchDBs
[$masterName] = 1;
158 * Notify the ChronologyProtector that the LBFactory is done calling shutdownLB() for now.
159 * May commit chronology data to persistent storage.
161 * @param callable|null $workCallback Work to do instead of waiting on syncing positions
162 * @param string $mode One of (sync, async); whether to wait on remote datacenters
163 * @return DBMasterPos[] Empty on success; returns the (db name => position) map on failure
165 public function shutdown( callable
$workCallback = null, $mode = 'sync' ) {
166 if ( !$this->enabled
) {
170 $store = $this->store
;
171 // Some callers might want to know if a user recently touched a DB.
172 // These writes do not need to block on all datacenters receiving them.
173 foreach ( $this->shutdownTouchDBs
as $dbName => $unused ) {
175 $this->getTouchedKey( $this->store
, $dbName ),
181 if ( !count( $this->shutdownPositions
) ) {
182 return []; // nothing to save
185 $this->logger
->info( __METHOD__
. ": saving master pos for " .
186 implode( ', ', array_keys( $this->shutdownPositions
) ) . "\n"
189 // CP-protected writes should overwhemingly go to the master datacenter, so get DC-local
190 // lock to merge the values. Use a DC-local get() and a synchronous all-DC set(). This
191 // makes it possible for the BagOStuff class to write in parallel to all DCs with one RTT.
192 if ( $store->lock( $this->key
, 3 ) ) {
193 if ( $workCallback ) {
194 // Let the store run the work before blocking on a replication sync barrier. By the
195 // time it's done with the work, the barrier should be fast if replication caught up.
196 $store->addBusyCallback( $workCallback );
200 self
::mergePositions( $store->get( $this->key
), $this->shutdownPositions
),
202 ( $mode === 'sync' ) ?
$store::WRITE_SYNC
: 0
204 $store->unlock( $this->key
);
210 $bouncedPositions = $this->shutdownPositions
;
211 // Raced out too many times or stash is down
212 $this->logger
->warning( __METHOD__
. ": failed to save master pos for " .
213 implode( ', ', array_keys( $this->shutdownPositions
) ) . "\n"
215 } elseif ( $mode === 'sync' &&
216 $store->getQoS( $store::ATTR_SYNCWRITES
) < $store::QOS_SYNCWRITES_BE
218 // Positions may not be in all datacenters, force LBFactory to play it safe
219 $this->logger
->info( __METHOD__
. ": store may not support synchronous writes." );
220 $bouncedPositions = $this->shutdownPositions
;
222 $bouncedPositions = [];
225 return $bouncedPositions;
229 * @param string $dbName DB master name (e.g. "db1052")
230 * @return float|bool UNIX timestamp when client last touched the DB; false if not on record
233 public function getTouched( $dbName ) {
234 return $this->store
->get( $this->getTouchedKey( $this->store
, $dbName ) );
238 * @param BagOStuff $store
239 * @param string $dbName
242 private function getTouchedKey( BagOStuff
$store, $dbName ) {
243 return $store->makeGlobalKey( __CLASS__
, 'mtime', $this->clientId
, $dbName );
247 * Load in previous master positions for the client
249 protected function initPositions() {
250 if ( $this->initialized
) {
254 $this->initialized
= true;
256 // If there is an expectation to see master positions with a certain min
257 // timestamp, then block until they appear, or until a timeout is reached.
258 if ( $this->waitForPosTime
> 0.0 ) {
260 $loop = new WaitConditionLoop(
261 function () use ( &$data ) {
262 $data = $this->store
->get( $this->key
);
264 return ( self
::minPosTime( $data ) >= $this->waitForPosTime
)
265 ? WaitConditionLoop
::CONDITION_REACHED
266 : WaitConditionLoop
::CONDITION_CONTINUE
;
268 $this->waitForPosTimeout
270 $result = $loop->invoke();
271 $waitedMs = $loop->getLastWaitTime() * 1e3
;
273 if ( $result == $loop::CONDITION_REACHED
) {
274 $msg = "expected and found pos time {$this->waitForPosTime} ({$waitedMs}ms)";
275 $this->logger
->debug( $msg );
277 $msg = "expected but missed pos time {$this->waitForPosTime} ({$waitedMs}ms)";
278 $this->logger
->info( $msg );
281 $data = $this->store
->get( $this->key
);
284 $this->startupPositions
= $data ?
$data['positions'] : [];
285 $this->logger
->info( __METHOD__
. ": key is {$this->key} (read)\n" );
287 $this->startupPositions
= [];
288 $this->logger
->info( __METHOD__
. ": key is {$this->key} (unread)\n" );
293 * @param array|bool $data
296 private static function minPosTime( $data ) {
297 if ( !isset( $data['positions'] ) ) {
302 foreach ( $data['positions'] as $pos ) {
303 /** @var DBMasterPos $pos */
304 $min = $min ?
min( $pos->asOfTime(), $min ) : $pos->asOfTime();
311 * @param array|bool $curValue
312 * @param DBMasterPos[] $shutdownPositions
315 private static function mergePositions( $curValue, array $shutdownPositions ) {
316 /** @var $curPositions DBMasterPos[] */
317 if ( $curValue === false ) {
318 $curPositions = $shutdownPositions;
320 $curPositions = $curValue['positions'];
321 // Use the newest positions for each DB master
322 foreach ( $shutdownPositions as $db => $pos ) {
323 if ( !isset( $curPositions[$db] )
324 ||
$pos->asOfTime() > $curPositions[$db]->asOfTime()
326 $curPositions[$db] = $pos;
331 return [ 'positions' => $curPositions ];