MediaWiki  1.34.0
getReplicaServer.php
Go to the documentation of this file.
1 <?php
24 require_once __DIR__ . '/Maintenance.php';
25 
27 
34  public function __construct() {
35  parent::__construct();
36  $this->addOption( "group", "Query group to check specifically" );
37  $this->addDescription( 'Report the hostname of a replica DB server' );
38  }
39 
40  public function execute() {
41  if ( $this->hasOption( 'group' ) ) {
42  $db = $this->getDB( DB_REPLICA, $this->getOption( 'group' ) );
43  $host = $db->getServer();
44  } else {
45  $lb = MediaWikiServices::getInstance()->getDBLoadBalancer();
46  $i = $lb->getReaderIndex();
47  $host = $lb->getServerName( $i );
48  }
49  $this->output( "$host\n" );
50  }
51 }
52 
53 $maintClass = GetReplicaServer::class;
54 require_once RUN_MAINTENANCE_IF_MAIN;
RUN_MAINTENANCE_IF_MAIN
const RUN_MAINTENANCE_IF_MAIN
Definition: Maintenance.php:39
GetReplicaServer\execute
execute()
Do the actual work.
Definition: getReplicaServer.php:40
MediaWiki\MediaWikiServices
MediaWikiServices is the service locator for the application scope of MediaWiki.
Definition: MediaWikiServices.php:117
Maintenance\addDescription
addDescription( $text)
Set the description text.
Definition: Maintenance.php:348
GetReplicaServer\__construct
__construct()
Default constructor.
Definition: getReplicaServer.php:34
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: Maintenance.php:82
Maintenance\addOption
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Definition: Maintenance.php:267
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
GetReplicaServer
Maintenance script that reports the hostname of a replica DB server.
Definition: getReplicaServer.php:33
Maintenance\getDB
getDB( $db, $groups=[], $dbDomain=false)
Returns a database to be used by current maintenance script.
Definition: Maintenance.php:1396
Maintenance\getOption
getOption( $name, $default=null)
Get an option, or return the default.
Definition: Maintenance.php:302
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:453
Maintenance\hasOption
hasOption( $name)
Checks to see if a particular option exists.
Definition: Maintenance.php:288
$maintClass
$maintClass
Definition: getReplicaServer.php:53