You are browsing a read-only backup copy of Wikitech. The live site can be found at wikitech.wikimedia.org

MariaDB/troubleshooting: Difference between revisions

From Wikitech-static
Jump to navigation Jump to search
imported>Marostegui
(→‎Depooling a slave: dbctl is now used to depool a host)
imported>Marostegui
 
(28 intermediate revisions by 11 users not shown)
Line 1: Line 1:
{{Navigation Wikimedia infrastructure|expand=db}}
[[File:Replication problems.jpg|thumbnail|right|DBAs are working on it]]
[[File:Replication problems.jpg|thumbnail|right|DBAs are working on it]]
''This guide is a work in progress.''
''This guide is a work in progress. See also [[MariaDB/monitoring]] and [[MariaDB/Backups#Recovering_a_Snapshot]]''


== Depooling a slave ==
{{Warning|content=All dbctl write commands must be run with sudo}}


From cumin1001 or cumin2001:
== Depooling a replica ==
 
From one of the cluster management hosts ({{CuminHosts}}):
  dbctl instance dbXXXX depool
  dbctl instance dbXXXX depool
  dbctl config commit
  dbctl config commit -m "Depool dbXXXX"


'''Create a task with the DBA tag''' so DBAs can follow up and checkout what happened, a proper fix etc
More example commands at: https://wikitech.wikimedia.org/wiki/Dbctl#Usage


* Monitor that mysql connections to that host slowly drop as soon as the queries finish. For that, connect to that host and use mysql's SHOW PROCESSLIST; and check there are no wikiuser or wikiadmin connctions. You can also monitor connections with regular linux tools like netstat/ss on port 3306 (or the right mysql port). Monitoring tools regularly check the host, but they use separate users.
'''If you depool a host, [https://phabricator.wikimedia.org/maniphest/task/edit/form/1/?projects=DBA please create a task tagging #DBA so we can take a look at what happened.]'''


Example:
=== Depooling a parsercache host ===
parsercache hosts aren't handled by ''dbctl'', they live in the MediaWiki repo. If one of the parsercache hosts dies, we need to swap it with the spare one.
To do so make sure you have the mediawiki-config repo cloned:
git clone ssh://$youruser@gerrit.wikimedia.org:29418/operations/mediawiki-config


MariaDB PRODUCTION x1 localhost (none) > SHOW PROCESSLIST;
parsercache config is at 'wmf-config/ProductionServices.php'
+---------+-----------------+-------------------+--------------------+---------+-
Both eqiad and codfw have their own array which looks like:
| Id      | User            | Host              | db                | Command |
        'parsercache-dbs' => [
+---------+-----------------+-------------------+--------------------+---------+-
            'pc1' => '10.192.0.72',  # pc2011, A5 8.8TB 512GB # pc1
# internal process, ignore
            'pc2' => '10.192.16.55', # pc2012, B5 8.8TB 512GB # pc2
|      2 | event_scheduler | localhost        | NULL              | Daemon  |
            'pc3' => '10.192.32.57', # pc2013, C1 8.8TB 512GB # pc3
  # replication users, ignore
            # spare: '10.192.48.52', # pc2014, D1 8.8TB 512GB
| 3192579 | system user    |                  | NULL              | Connect |
            # Use spare(s) to replace any of the above if needed
| 3192580 | system user    |                  | NULL              | Connect |
# monitoring users, ignore
| 6284249 | watchdog        | 10.XX.XX.XX:34525 | information_schema | Sleep  |
  | 6284250 | watchdog        | 10.XX.XX.XX:34716 | information_schema | Sleep  |
| 6284253 | watchdog        | 10.XX.XX.XX:34890 | mysql              | Sleep  |
  # this is your own connection
| 6311084 | root            | localhost        | NULL              | Query  |
+---------+-----------------+-------------------+--------------------+---------+-


(no wikiuser or wikiadmin processes, ok to do maintenance, kill the machine, etc.)
The spare host is a floating host with the schema and the tables. It can be placed in any section (it typically replicates from pc1, so if pc1 is the one that dies, it would be a warm replacement, if not, it will be a cold replacement, which might impact performance for a few minutes).
To replace a failed host, first disable replication on the spare host (in this example pc2014, adjust as needed) by doing the following
ssh pc2014.codfw.wmnet
sudo mysql -e "stop slave; reset slave all"


:* Except the dump slave -while creating the dumps- or some specific maintenance or long running tasks, connections should go away in seconds/very few minutes. If there is an emergency- killing the process (<code>KILL <#ID></code>) is the way to go. Selects are ok to kill, writes and alters can create worse issues due to rollback process kicking in- be sure what you kill. Sadly there are some times where idle conenctions keep connected for a long time.
Now you can change the MW configuration and push it to gerrit.
Once in gerrit, +2 the change and connect to the deployment host:
ssh deployment.eqiad.wmnet
scap backport $GERRIT_PATCH_NUMBER


== Depooling a master (a.k.a. promoting a new slave to master) ==
Once the deployment is done, please '''[https://phabricator.wikimedia.org/maniphest/task/edit/form/1/?projects=DBA create a task and tag DBA to follow up with the crashed host]'''.


See: [[Switch master]] (most of it still relevant).
=== x2 special topology ===
If the failed replica is part of x2, '''there is no need to depool it as they aren't used'''.


=== Planned switchover ===
See [[MariaDB#x2]] for more details.


There is a script, <code>switchover.py</code> https://phabricator.wikimedia.org/diffusion/OSMD/browse/master/wmfmariadbpy/switchover.py , to be run from a Wikimedia mysql root client (cumin1001 or cumin2001 at the moment), which will automate the most complex steps. However, due to mediawiki dependencies, we still need at the moment to perform some extra steps:
== Master comes back in read only ==


* Set mediawiki in read only for that master (if possible) or migrate the service away. Normally that is a line uncommenting on <code>db-eqiad.php</code> or <code>db-codfw.php</code>:
A master coming back in READ ONLY mode is '''expected after a crash''' and it is done to prevent accidental corruption (or even more corruption on a crash).
'readOnlyBySection' => [
        's1'     => 'English Wikipedia in read only because reasons.',


... pointing the parsercache to another host:
'''Unless you know what you are doing, do not set it back to writable: if unsure, call a DBA'''


$wmgParserCacheDBs = [
=== Impact ===
      '10.64.0.12'  => '10.64.32.72',  # pc1004, A3 2.4TB 256GB, temporarily failed over to pc1005
Reads will remain unaffected but no writes will be able to go through, the wikis on that master will be on read-only mode.
      '10.64.32.72'  => '10.64.32.72',  # pc1005, C7 2.4TB 256GB


... or depooling it:
To find out which wikis are those:
  $wgDefaultExternalStore = [
  ssh to the host: mysql -e "show databases"
        'DB://cluster24',
Or from any cumin host: db-mysql $instance -e "show databases"
        # 'DB://cluster25',
];


Once that is deployed, execute switchover.py, with the original master and the target one as parameters:
=== What to do ===


./switchover.py db1052 db1067
'''If unsure, call a DBA'''


This is an example of a successful output:
If you know what you are doing:
* Check the reason for the crash:
journalctl -xe -umariadb -f
dmesg
/var/log/messages


Starting preflight checks...
* Check the state of the data:
* Original read only values are as expected (master: read_only=0, slave: read_only=1)
** Check errors above
* The host to fail over is a direct replica of the master
** Check if tables are marked as corrupted or you see InnoDB crashes
* Replication is up and running between the 2 hosts
** Select from the main tables and see if you can get results: revision text users watchlist actor comment
* The replication lag is acceptable: 0 (lower than the configured or default timeout)
* The master is not a replica of any other host
----- OUTPUT of '/bin/ps --no-hea...pid,args -C perl' -----                                                                         
  6313 /usr/bin/perl /usr/local/bin/pt-heartbeat-wikimedia --defaults-file=/dev/null --user=root --host=localhost -D heartbeat --shard=es3 --datacenter=eqiad --update --replace --interval=1 --set-vars=binlog_format=STATEMENT -S /tmp/mysql.sock --daemonize --pid /var/run/pt-heartbeat.pid
================                                                                                                                   
PASS:  |████████████████████████████████████████████████████████████████████████████████| 100% (1/1) [00:00<00:00,  4.23hosts/s]   
FAIL:  |                                                                                        |  0% (0/1) [00:00<?, ?hosts/s]   
100.0% (1/1) success ratio (>= 100.0% threshold) for command: '/bin/ps --no-hea...pid,args -C perl'.
100.0% (1/1) success ratio (>= 100.0% threshold) of nodes successfully executed all commands.
Stopping heartbeat pid 6313 at es1014.eqiad.wmnet:3306/(none)
----- OUTPUT of '/bin/kill 6313' -----                                                                                             
================                                                                                                                   
PASS:  |████████████████████████████████████████████████████████████████████████████████| 100% (1/1) [00:00<00:00,  4.46hosts/s]   
FAIL:  |                                                                                        |  0% (0/1) [00:00<?, ?hosts/s]   
100.0% (1/1) success ratio (>= 100.0% threshold) for command: '/bin/kill 6313'.
100.0% (1/1) success ratio (>= 100.0% threshold) of nodes successfully executed all commands.
Setting up original master as read-only
Slave caught up to the master after waiting 0.010378122329711914 seconds
Servers sync at master: es1014-bin.002508:184384418 slave: es1017-bin.002491:41215873
Stopping original master->slave replication
Setting up replica as read-write
All commands where successful, current status: original master read_only: 1 / original slave read_only: 0
Trying to invert replication direction
Starting heartbeat section es3 at es1017.eqiad.wmnet
----- OUTPUT of '/usr/bin/nohup /...d &> /dev/null &' -----                                                                         
================                                                                                                                   
PASS:  |████████████████████████████████████████████████████████████████████████████████| 100% (1/1) [00:00<00:00,  3.29hosts/s]   
FAIL:  |                                                                                        |  0% (0/1) [00:00<?, ?hosts/s]   
100.0% (1/1) success ratio (>= 100.0% threshold) for command: '/usr/bin/nohup /...d &> /dev/null &'.
100.0% (1/1) success ratio (>= 100.0% threshold) of nodes successfully executed all commands.
----- OUTPUT of '/bin/ps --no-hea...pid,args -C perl' -----                                                                         
12107 /usr/bin/perl /usr/local/bin/pt-heartbeat-wikimedia --defaults-file=/dev/null --user=root --host=localhost -D heartbeat --shard=es3 --datacenter=eqiad --update --replace --interval=1 --set-vars=binlog_format=STATEMENT -S /run/mysqld/mysqld.sock --daemonize --pid /var/run/pt-heartbeat.pid
================                                                                                                                   
PASS:  |████████████████████████████████████████████████████████████████████████████████| 100% (1/1) [00:00<00:00,  3.22hosts/s]   
FAIL:  |                                                                                        |  0% (0/1) [00:00<?, ?hosts/s]   
100.0% (1/1) success ratio (>= 100.0% threshold) for command: '/bin/ps --no-hea...pid,args -C perl'.
100.0% (1/1) success ratio (>= 100.0% threshold) of nodes successfully executed all commands.
Detected heartbeat at es1017.eqiad.wmnet running with PID 12107
Verifying everything went as expected...
SUCCESS: Master switch completed successfully
This will move the replicas below the other host, and perform the replication changes to migrate the service, while maintaining data consistency. Note that at the moment of writing this lines, the replica migration has issues, so you should do it manually with repl.pl (which stops and restart replication and only works for direct working replicas). Thus, you should execute switchover skipping that step:


./switchover.py --skip-slave-move db1052 db1067
** If storage is the cause, you most likely want to failover to a different host: https://wikitech.wikimedia.org/wiki/MariaDB/troubleshooting#Emergency_failover
** If a memory dimm is the cause, you most like want to:
*** Disable puppet
*** Reduce innodb buffer pool size on my.cnf
*** Restart mariadb
*** Check data from a few tables
*** Check that all replicas are in sync
*** set global read_only=OFF;
*** Create a task to follow up


Finally, set the service back in read-write/update master configuration by deploying mediawiki.
If this is part of a maintenance and pages it could be due to expired downtime or because it was forgotten to be downtimed. If that is the case, contact whoever is doing the maintenance, if it is you, remember to:
set global read_only=OFF;


A checklists of things to do or check after a successful switchover:
== Depooling a master (a.k.a. promoting a new replica to master) ==


* You can perform an edit on the section you just swichover
=== Planned switchover ===
* No further errors on logstash (there will be some that are unavoidable due to the read only period)
* Semi-sync is enabled on new master and disabled on old master
* Make sure tendril and zarcillo (dbtree, dbmonitor) have the correct master on its database (in the future this should happen automatically by switchover.py)
* Update dns example :https://gerrit.wikimedia.org/r/#/c/operations/dns/+/439533/ (these dns aliases are not used)
* Patch prometheus, dblists example: https://gerrit.wikimedia.org/r/#/c/operations/software/+/439534/ (this should happen automatically in the future, based on zarcillo)
* Enable GTID on all the replicas, make sure the master is not replicating from anywhere
* Create decommissioning ticket for OLD host, if necessary
* Ensure all replicas and masters have the right events on the ops database (<code>[https://phabricator.wikimedia.org/diffusion/OSOF/browse/master/dbtools/events_coredb_slave.sql events_coredb_slave.sql]</code>, <code>[https://phabricator.wikimedia.org/diffusion/OSOF/browse/master/dbtools/events_coredb_master.sql events_coredb_master.sql]</code>) (in the future this should happen automatically by switchover.py)
* Update/resolve phabricator ticket about failover


A full list of manual steps can be found at: [[MariaDB#Production_section_failover_checklist]]
See an example task and checklist at: https://phabricator.wikimedia.org/T313383
 
See: [[Primary database switchover]]


=== Emergency failover ===
=== Emergency failover ===
'''Note: It's better to just call a DBA.'''


If the master is not available, or replication is broken, this is a more complex case. The reasons is that slaves will have executed different amount of transactions and will be in a close, but different state. E.g. slave1 has executed transactions A, while slave2 has executed transactions A, B and C. In addition to that, if we do not have access to the master's binary log (or it has not properly been synchronized to disk after a crash), we will have to recover from a slave. In theory, with semi-sync replication, no transaction will be lost, and at least one slave will have the change, but all other slave will be on different coordinates (and binary log position is only local to the masters).
If the master is not available, or replication is broken, this is a more complex case. The reason is that replicas will have executed different amount of transactions and will be in a close, but different state. E.g. slave1 has executed transactions A, while slave2 has executed transactions A, B and C. In addition to that, if we do not have access to the master's binary log (or it has not properly been synchronized to disk after a crash), we will have to recover from a replica. In theory, with semi-sync replication, no transaction will be lost, and at least one replica will have the change, but all other replicas will be on different coordinates (and binary log position is only local to the masters).


'''Scenario 1''' -master is recoverable: just wait until the master restarts, it will avoid headaches and be faster and less disruptive than trying to failover it.
'''Scenario 1''' -master is recoverable: just wait until the master restarts, it will avoid headaches and be faster and less disruptive than trying to failover it.


'''Scenario 2''' -master is not recoverable, but its binary log is (and all slaves have less or equal amount of data):
'''Scenario 2''' -master is not recoverable, but its binary log is (and all replicas have a less or equal amount of data):
# For each slave: send the master log position, starting from the last Exec_master_position so all slaves are in the same starting state
# For each replica: send the master log position, starting from the last Exec_master_position so all replicas are in the same starting state
# Follow regular failover steps as mentioned in the scheduled maintenance
# Follow regular failover steps as mentioned in the scheduled maintenance


'''Scenario 3''' -neither master is recoverable nor its binary logs (or a master binary log is behind a slave binary log): We need to put all servers in the same state, using the most up-to-date slave, then perform the regular failover process. This is the most complicated part without using GTIDs:
'''Scenario 3''' -neither master is recoverable nor its binary logs (or a master binary log is behind a replica binary log): We need to put all servers in the same state, using the most up-to-date replica, then perform the regular failover process. This is the most complicated part without using GTIDs:
# Identify the most up to date slave by comparing Exec_master_log_pos
# Identify the most up to date replica by comparing Exec_master_log_pos
# By comparing binary log positions, try to find the binlog coordinate that corresponds to the the other's slaves binlog to the most up to date slave's binlog. This is the tricky part. pt-heartbeat should be able to find this.
# By comparing binary log positions, try to find the binlog coordinate that corresponds to the other's replicas binlog to the most up to date replica's binlog. This is the tricky part. pt-heartbeat should be able to find this.
# Excute the pending transactions on each slave
# Execute the pending transactions on each replica
# Follow the regular steps for regular scheduled maintenance
# Follow the regular steps for regular scheduled maintenance


Again, these steps can be automatized.
Again, these steps can be automated.


== Replication lag ==
== Replication lag ==
Line 155: Line 120:
=== Caused by hardware ===
=== Caused by hardware ===


[[File:Hwraid.png|thumb|600px|This is what a half-failing disks looks like in monitoring (small lag until it becomes critical).]]
[[File:Hwraid.png|thumb|600px|This is what a half-failing disk looks like in monitoring (small lag until it becomes critical).]]


One common cause of lag that is easy to check and repair is hardware issues.
One common cause of lag that is easy to check and repair is hardware issues.
Line 165: Line 130:
As an operator, you are already familiar with the way drives fail (not very reliably, to be honest). All important databases have a hardware RAID, which means 1 disk can fail at a time, usually with very little impact. When that happens, the icinga alert "<code>1 failed LD(s) (Degraded)</code>" should tell you it is time to replace at least one disk. Usually there are spares onsite or the servers are under warranty, which means you can create a ticket to ops-eqiad or ops-codfw and let Chris or Papaul know that should take it off and insert a new one, the hw RAID should automatically reconstruct itself.
As an operator, you are already familiar with the way drives fail (not very reliably, to be honest). All important databases have a hardware RAID, which means 1 disk can fail at a time, usually with very little impact. When that happens, the icinga alert "<code>1 failed LD(s) (Degraded)</code>" should tell you it is time to replace at least one disk. Usually there are spares onsite or the servers are under warranty, which means you can create a ticket to ops-eqiad or ops-codfw and let Chris or Papaul know that should take it off and insert a new one, the hw RAID should automatically reconstruct itself.


To check the RAID status, execute:
To check the RAID status, execute (please also check [[PERCCli]] as the new databases are using a new RAID controller and that's the tool to use:


You can simply use the wrapper that would pick the right tool for you:
sudo /usr/local/lib/nagios/plugins/get-raid-status-perccli
Alternatively, the megacli command is:
   megacli -AdpAllInfo -aALL
   megacli -AdpAllInfo -aALL


Line 181: Line 150:


where #:# is enclosure:slot, will take the particular physical drive offline so that it can be replaced later.
where #:# is enclosure:slot, will take the particular physical drive offline so that it can be replaced later.
For perccli commands check [[PERCCli]]


==== Bad or defective BBU ====
==== Bad or defective BBU ====
Line 195: Line 166:


  megacli -LDSetProp -ForcedWB -Immediate -Lall -aAll
  megacli -LDSetProp -ForcedWB -Immediate -Lall -aAll
For Perccli run the following command, where /c0 is controller 0 (the first controller):
sudo perccli64 /c0/bbu show status
To check the relearn cycle status:
sudo perccli64 /c0/bbu show learn
== Overload due to long running queries ==
{{main|Query killer}}
{{main|db-kill}}
If you need to kill queries from a host, connect to any cumin host (cumin1001.eqiad.wmnet or cumin2001.codfw.wmnet) and run:
db-kill INSTANCE
''Please note that this can alleviate the symptoms, but won't fix the root cause.''
If a host or several of them are complaining due to max_connection limit as seen by the processlist and max_connection errors on the mysql graphs [https://grafana.wikimedia.org/d/000000273/mysql] [https://grafana.wikimedia.org/d/000000278/mysql-aggregated] or on application server logs (sometimes causing also "Not enough idle PHP-FPM workers for Mediawiki" as a cascade error), it is possible that one or several queries run by mysql are taking over all mysql resources, snowballing into blocking others for execution. While mysql server will likely stay up, as they use a queue to avoid executing many of them at the same time, the queing will increase extra latency on execution, affecting application servers resources, too.
This can be caused by a deliberate abuse of expensive functionality or API call, by a bug on application code sending poorly-optimized queries, or a change on the query planner that makes old fast queries now slower.
To fix the issue, the best way is '''disabling on mediawiki the functionality that is sending the long running queries'''.
MariaDB mediawiki instances have a [[query killer]] enabled that kicks in when it detects idle queries or queries executing for longer than 60 seconds (agreed as the maximum query time allowed by web requests). If a connection overload is detected (by monitoring current connections), an overload killer also kicks in.
You can also login to the database and do `show processlist`. Find the long-running queries and run `kill QUERY ID` (replace QUERY ID with the id given in show processlist).
== Memory issues ==
There is an alert "MariaDB memory", that checks that there is not memory over-commitment due to a missconfiguration, heavy activity or a leak. For now the alert is just a check that there is enough free memory (not counting filesystem cache) for client connections, utilities and background tasks. If a host starts alerting (or starts OOMing), reduce the buffer pool or load to go back to the 80-90% memory usage.
While MariaDB can reduce the buffer pool in a hot way, just by typing <code>SET GLOBAL innodb_buffer_pool_size = <new size in bytes>;</code>. '''Not recommended to be run when the host is pooled''' as it might create stalls/replication lag while the buffer pool is being resized.


== Data loss ==
== Data loss ==


=== Cloning a slave ===
=== Normal reprovisioning ===


The best (and fastest) way to repair a slave (or a master) is to clone from another slave. Either stop a slave (after depooling it) and just send the files away or use xtrabackup to clone it. The rest of the techniques assume that the data loss is fleet-wide (a logical/application/DBA error, rather than a physical problem).
The best (and fastest) way to repair a replica (or a master) is to use the regular provisioning workflow - to copy the latest snapshot from dbprovXXXX hosts. Depending on the section it should take minutes to 1h.


=== Backups ===
If only a partial recovery is needed (single dropped table), logical backups (on the same dbprov* hosts) may be faster and more flexible. A full logical recovery can take from 12 hours to 1 day.


There are weekly logical backups in /srv/backups/latest on es2001 (for 2 weeks) and in bacula (for 30 days, aiming for 90 with a future expansion). They are very slow to recover (it can take 7-10 hours to recover a full shard), so think twice before recovering fully from them- use instead a binary backup or use them for partial recoveries. See [[MariaDB/Backups]] for more details on how they are created and how to recover them.
''More info at [[MariaDB/Backups]].''


== Data inconsistency between nodes ==
=== Long term backups ===


== Depooling a Labs dbproxy ==
If for some reason the short term backups/provisioning files are not enough, you can get those from bacula. Recover from bacula to dbprovXXXX then use the same method as above.
 
''More info at [[Bacula]].''
 
=== Cloning ===
 
If for some reason no backups are available, but replicas are, we can clone a running mariadb server with xtrabackup or the files of a stopped one into another host (see [[transfer.py]] utility for both file and xtrabackup transfers).
 
=== Binlogs ===
 
Binlogs are not a backup method, but they are files containing the transactions in the last month, on every master and replica. They are helpful to do point in time recovery if replication is not working, allowing to move forward a backup until an arbitrary point in time (e.g. before a DROP was sent).
 
Point in time recovery at the moment is fully manual but its automation is a work in progress.
 
== Data inconsistency between nodes "drift" / replication broken ==
 
[https://phabricator.wikimedia.org/diffusion/OSMD/browse/master/wmfmariadbpy/compare.py;a2c2eaec25fe9dca11c0e4df38f925264bc33ebe?as=source&blame=off db-compare] utility allows to manually check the difference between 2 hosts. This is right now manually run, but it is schedule to be constantly running comparing host inconsistencies. It can be run from any cumin host.
 
Aside from a manual check, the other most common way to find inconsistencies is for replication to break as a change is applied to a master that cannot be applied to the replica.
 
Steps to perform:
* If an inconsistency happens on one replica, it is likely '''the host data got corrupted, depool it''' and research should be done why it happened. If the issue was due to only replica issues, wipe data and recover from provisioning hosts.
* If it happens on all replicas, it should be checked if there is master corruption or other operational error. If an operational error "a table exist on the master an not on others", it could be corrected manually (e.g. create the table manually). Otherwise, failover the master so it can be depooled and continue with a different host as the new master.
* In all cases, it should be clear which host or set of hosts have the right data; the "bad host(s)" should be put out of production, itrs data deleted and reprovisioned from backup
 
'''NEVER use sql_slave_skip_counter!''' Not only you will skip full transactions (despite maybe a single row being problematic, creating more drift issues), you will make hosts have a different gtid counter. If you have to manually change something on only 1 host, apply the dml with <code>set sql_log_bin=0;</code> so it doesn't go to the binlog/gtid counter/replication.
 
=== Split brain ===
 
There is an additional case, which is if a "split brain" has happened and correct data was written to both master and replicas.


The first thing is to depool it from the [https://wikitech.wikimedia.org/wiki/Portal:Data_Services/Admin/Wiki_Replica_DNS Wiki Replicas DNS]
This is rare given that all replicas are set in read only to prevent this issue. Also this is difficult to handle- ideally data should be merged into a single unified version.
Once that is done and if you are depooling dbproxy1010 all the traffic will go to dbproxy1011 which only has one server as active. The other one is a backup host as can be seen at the hiera file that lives on our puppet repo:
cat hieradata/hosts/dbproxy1011.yaml


profile::mariadb::proxy::master::primary_name: 'labsdb1009'
If data affected is derived (non-canonical) ", eg. *links tables, you could temporarily chose a single set of servers, go back to read/write and the try to merge the difference in the background.  
profile::mariadb::proxy::master::primary_addr: '10.64.4.14:3306'
profile::mariadb::proxy::master::secondary_name: 'labsdb1010'
profile::mariadb::proxy::master::secondary_addr: '10.64.37.23:3306'


That means when dbproxy1010 is depooled, all its traffic will go to labsdb1009.
If canonical data is affected (page, revision, user), consider setting up the application/section in read only until data is reconciliated, so new versions are not added that could make the 2 data version merging more complicated.
So it is advised to change haproxy configuration temporary to make labsdb1010 also active (round robin dns).
To do so:


ssh dbproxy1011
== Depooling a Labs dbproxy ==
puppet agent --disable "Changing haproxy temporarily"
See [[Portal:Data Services/Admin/Runbooks/Depool wikireplicas]]
vim /etc/haproxy/conf.d/db-master.cfg


Replace the line:
== Using mysqlbinlog ==
server labsdb1010 10.64.37.23:3306 check backup


With:
binlogs are typically stored at ''/srv/sqldata/'' and called: ''db$HOSTNAME-bin.XXX''
server labsdb1010 10.64.37.23:3306 check inter 3s fall 20 rise 99999999
If you need to explore them, simply ssh to the host and run:


Reload HAProxy
  sudo mysqlbinlog -vv --base64-output=DECODE-ROWS db$INSTANCE-bin.XXXXX
  systemctl reload haproxy


[[Category:MySQL]]
[[Category:MySQL]]
[[Category:Runbooks]]
[[Category:Runbooks]]
{{SRE/Data Persistence/Footer}}
[[Category:MariaDB]]

Latest revision as of 14:12, 23 March 2023

DBAs are working on it

This guide is a work in progress. See also MariaDB/monitoring and MariaDB/Backups#Recovering_a_Snapshot

Depooling a replica

From one of the cluster management hosts (cumin1001.eqiad.wmnet, cumin2002.codfw.wmnet):

dbctl instance dbXXXX depool
dbctl config commit -m "Depool dbXXXX"

More example commands at: https://wikitech.wikimedia.org/wiki/Dbctl#Usage

If you depool a host, please create a task tagging #DBA so we can take a look at what happened.

Depooling a parsercache host

parsercache hosts aren't handled by dbctl, they live in the MediaWiki repo. If one of the parsercache hosts dies, we need to swap it with the spare one. To do so make sure you have the mediawiki-config repo cloned:

git clone ssh://$youruser@gerrit.wikimedia.org:29418/operations/mediawiki-config

parsercache config is at 'wmf-config/ProductionServices.php' Both eqiad and codfw have their own array which looks like:

        'parsercache-dbs' => [
           'pc1' => '10.192.0.72',   # pc2011, A5 8.8TB 512GB # pc1
           'pc2' => '10.192.16.55',  # pc2012, B5 8.8TB 512GB # pc2
           'pc3' => '10.192.32.57',  # pc2013, C1 8.8TB 512GB # pc3
           # spare: '10.192.48.52',  # pc2014, D1 8.8TB 512GB
           # Use spare(s) to replace any of the above if needed

The spare host is a floating host with the schema and the tables. It can be placed in any section (it typically replicates from pc1, so if pc1 is the one that dies, it would be a warm replacement, if not, it will be a cold replacement, which might impact performance for a few minutes). To replace a failed host, first disable replication on the spare host (in this example pc2014, adjust as needed) by doing the following

ssh pc2014.codfw.wmnet
sudo mysql -e "stop slave; reset slave all"

Now you can change the MW configuration and push it to gerrit. Once in gerrit, +2 the change and connect to the deployment host:

ssh deployment.eqiad.wmnet
scap backport $GERRIT_PATCH_NUMBER

Once the deployment is done, please create a task and tag DBA to follow up with the crashed host.

x2 special topology

If the failed replica is part of x2, there is no need to depool it as they aren't used.

See MariaDB#x2 for more details.

Master comes back in read only

A master coming back in READ ONLY mode is expected after a crash and it is done to prevent accidental corruption (or even more corruption on a crash).

Unless you know what you are doing, do not set it back to writable: if unsure, call a DBA

Impact

Reads will remain unaffected but no writes will be able to go through, the wikis on that master will be on read-only mode.

To find out which wikis are those:

ssh to the host: mysql -e "show databases"
Or from any cumin host: db-mysql $instance -e "show databases"

What to do

If unsure, call a DBA

If you know what you are doing:

  • Check the reason for the crash:
journalctl -xe -umariadb -f
dmesg
/var/log/messages
  • Check the state of the data:
    • Check errors above
    • Check if tables are marked as corrupted or you see InnoDB crashes
    • Select from the main tables and see if you can get results: revision text users watchlist actor comment
    • If storage is the cause, you most likely want to failover to a different host: https://wikitech.wikimedia.org/wiki/MariaDB/troubleshooting#Emergency_failover
    • If a memory dimm is the cause, you most like want to:
      • Disable puppet
      • Reduce innodb buffer pool size on my.cnf
      • Restart mariadb
      • Check data from a few tables
      • Check that all replicas are in sync
      • set global read_only=OFF;
      • Create a task to follow up

If this is part of a maintenance and pages it could be due to expired downtime or because it was forgotten to be downtimed. If that is the case, contact whoever is doing the maintenance, if it is you, remember to:

set global read_only=OFF;

Depooling a master (a.k.a. promoting a new replica to master)

Planned switchover

See an example task and checklist at: https://phabricator.wikimedia.org/T313383

See: Primary database switchover

Emergency failover

Note: It's better to just call a DBA.

If the master is not available, or replication is broken, this is a more complex case. The reason is that replicas will have executed different amount of transactions and will be in a close, but different state. E.g. slave1 has executed transactions A, while slave2 has executed transactions A, B and C. In addition to that, if we do not have access to the master's binary log (or it has not properly been synchronized to disk after a crash), we will have to recover from a replica. In theory, with semi-sync replication, no transaction will be lost, and at least one replica will have the change, but all other replicas will be on different coordinates (and binary log position is only local to the masters).

Scenario 1 -master is recoverable: just wait until the master restarts, it will avoid headaches and be faster and less disruptive than trying to failover it.

Scenario 2 -master is not recoverable, but its binary log is (and all replicas have a less or equal amount of data):

  1. For each replica: send the master log position, starting from the last Exec_master_position so all replicas are in the same starting state
  2. Follow regular failover steps as mentioned in the scheduled maintenance

Scenario 3 -neither master is recoverable nor its binary logs (or a master binary log is behind a replica binary log): We need to put all servers in the same state, using the most up-to-date replica, then perform the regular failover process. This is the most complicated part without using GTIDs:

  1. Identify the most up to date replica by comparing Exec_master_log_pos
  2. By comparing binary log positions, try to find the binlog coordinate that corresponds to the other's replicas binlog to the most up to date replica's binlog. This is the tricky part. pt-heartbeat should be able to find this.
  3. Execute the pending transactions on each replica
  4. Follow the regular steps for regular scheduled maintenance

Again, these steps can be automated.

Replication lag

See also MySQL#Replication lag for additional tips.

Caused by hardware

This is what a half-failing disk looks like in monitoring (small lag until it becomes critical).

One common cause of lag that is easy to check and repair is hardware issues.

Disks about to fail

Databases have a lot (and I mean a lot) of IO pressure, and while it is not insane, it means that 3-year old drives are very prone to fail.

As an operator, you are already familiar with the way drives fail (not very reliably, to be honest). All important databases have a hardware RAID, which means 1 disk can fail at a time, usually with very little impact. When that happens, the icinga alert "1 failed LD(s) (Degraded)" should tell you it is time to replace at least one disk. Usually there are spares onsite or the servers are under warranty, which means you can create a ticket to ops-eqiad or ops-codfw and let Chris or Papaul know that should take it off and insert a new one, the hw RAID should automatically reconstruct itself.

To check the RAID status, execute (please also check PERCCli as the new databases are using a new RAID controller and that's the tool to use:

You can simply use the wrapper that would pick the right tool for you:

sudo /usr/local/lib/nagios/plugins/get-raid-status-perccli

Alternatively, the megacli command is:

 megacli -AdpAllInfo -aALL

And check the section "Devices present"

To identify the particular disk

 megacli -PDList -aALL

Check in particular for the Firmware State (on or off), the S.M.A.R.T alerts, and the number of medium errors (a few, like a dozen, should not affect much performance, but when there are hundreds of errors in a short timespan, that is an issue).

Sadly, disks fail in a very creative way, and while our RAIDs controllers are reliable enough to 1) continue despite medium errors and 2) disable the disk when it fails completely; in a state of "almost failing", there could be lag issues. If that is the case, executing:

 megacli -PDOffline -PhysDrv \[#:#\] -aALL

where #:# is enclosure:slot, will take the particular physical drive offline so that it can be replaced later.

For perccli commands check PERCCli

Bad or defective BBU

If all the disks are looking good, it can be that the RAID controller went to WriteThrough mode because of a failed BBU or because it is in a learning cycle (which shouldn't because it is disabled in our environment). If the Cache Policy is set to WriteThrough it will dramatically affect performance. In order to check the Current Policy (that is it, the active one):

megacli -LDInfo -LAll -aAll | grep "Cache Policy:"

If it is not in WriteBack mode, it means (most likely) that the BBU has failed for some reason and the default is to switch back to WriteThrough as it is safer. You can check the BBU status with:

megacli -AdpBbuCmd -GetBbuStatus -a0 | grep -e '^isSOHGood' -e '^Charger Status' -e '^Remaining Capacity' -e 'Charging'

If you are in an emergency, you can always force WriteBack, but this can lead to data loss if there is a power failure, so use it carefully

megacli -LDSetProp -ForcedWB -Immediate -Lall -aAll

For Perccli run the following command, where /c0 is controller 0 (the first controller):

sudo perccli64 /c0/bbu show status

To check the relearn cycle status:

sudo perccli64 /c0/bbu show learn

Overload due to long running queries

Main article: Query killer
Main article: db-kill

If you need to kill queries from a host, connect to any cumin host (cumin1001.eqiad.wmnet or cumin2001.codfw.wmnet) and run:

db-kill INSTANCE

Please note that this can alleviate the symptoms, but won't fix the root cause.

If a host or several of them are complaining due to max_connection limit as seen by the processlist and max_connection errors on the mysql graphs [1] [2] or on application server logs (sometimes causing also "Not enough idle PHP-FPM workers for Mediawiki" as a cascade error), it is possible that one or several queries run by mysql are taking over all mysql resources, snowballing into blocking others for execution. While mysql server will likely stay up, as they use a queue to avoid executing many of them at the same time, the queing will increase extra latency on execution, affecting application servers resources, too.

This can be caused by a deliberate abuse of expensive functionality or API call, by a bug on application code sending poorly-optimized queries, or a change on the query planner that makes old fast queries now slower.

To fix the issue, the best way is disabling on mediawiki the functionality that is sending the long running queries.

MariaDB mediawiki instances have a query killer enabled that kicks in when it detects idle queries or queries executing for longer than 60 seconds (agreed as the maximum query time allowed by web requests). If a connection overload is detected (by monitoring current connections), an overload killer also kicks in.

You can also login to the database and do `show processlist`. Find the long-running queries and run `kill QUERY ID` (replace QUERY ID with the id given in show processlist).

Memory issues

There is an alert "MariaDB memory", that checks that there is not memory over-commitment due to a missconfiguration, heavy activity or a leak. For now the alert is just a check that there is enough free memory (not counting filesystem cache) for client connections, utilities and background tasks. If a host starts alerting (or starts OOMing), reduce the buffer pool or load to go back to the 80-90% memory usage.

While MariaDB can reduce the buffer pool in a hot way, just by typing SET GLOBAL innodb_buffer_pool_size = <new size in bytes>;. Not recommended to be run when the host is pooled as it might create stalls/replication lag while the buffer pool is being resized.

Data loss

Normal reprovisioning

The best (and fastest) way to repair a replica (or a master) is to use the regular provisioning workflow - to copy the latest snapshot from dbprovXXXX hosts. Depending on the section it should take minutes to 1h.

If only a partial recovery is needed (single dropped table), logical backups (on the same dbprov* hosts) may be faster and more flexible. A full logical recovery can take from 12 hours to 1 day.

More info at MariaDB/Backups.

Long term backups

If for some reason the short term backups/provisioning files are not enough, you can get those from bacula. Recover from bacula to dbprovXXXX then use the same method as above.

More info at Bacula.

Cloning

If for some reason no backups are available, but replicas are, we can clone a running mariadb server with xtrabackup or the files of a stopped one into another host (see transfer.py utility for both file and xtrabackup transfers).

Binlogs

Binlogs are not a backup method, but they are files containing the transactions in the last month, on every master and replica. They are helpful to do point in time recovery if replication is not working, allowing to move forward a backup until an arbitrary point in time (e.g. before a DROP was sent).

Point in time recovery at the moment is fully manual but its automation is a work in progress.

Data inconsistency between nodes "drift" / replication broken

db-compare utility allows to manually check the difference between 2 hosts. This is right now manually run, but it is schedule to be constantly running comparing host inconsistencies. It can be run from any cumin host.

Aside from a manual check, the other most common way to find inconsistencies is for replication to break as a change is applied to a master that cannot be applied to the replica.

Steps to perform:

  • If an inconsistency happens on one replica, it is likely the host data got corrupted, depool it and research should be done why it happened. If the issue was due to only replica issues, wipe data and recover from provisioning hosts.
  • If it happens on all replicas, it should be checked if there is master corruption or other operational error. If an operational error "a table exist on the master an not on others", it could be corrected manually (e.g. create the table manually). Otherwise, failover the master so it can be depooled and continue with a different host as the new master.
  • In all cases, it should be clear which host or set of hosts have the right data; the "bad host(s)" should be put out of production, itrs data deleted and reprovisioned from backup

NEVER use sql_slave_skip_counter! Not only you will skip full transactions (despite maybe a single row being problematic, creating more drift issues), you will make hosts have a different gtid counter. If you have to manually change something on only 1 host, apply the dml with set sql_log_bin=0; so it doesn't go to the binlog/gtid counter/replication.

Split brain

There is an additional case, which is if a "split brain" has happened and correct data was written to both master and replicas.

This is rare given that all replicas are set in read only to prevent this issue. Also this is difficult to handle- ideally data should be merged into a single unified version.

If data affected is derived (non-canonical) ", eg. *links tables, you could temporarily chose a single set of servers, go back to read/write and the try to merge the difference in the background.

If canonical data is affected (page, revision, user), consider setting up the application/section in read only until data is reconciliated, so new versions are not added that could make the 2 data version merging more complicated.

Depooling a Labs dbproxy

See Portal:Data Services/Admin/Runbooks/Depool wikireplicas

Using mysqlbinlog

binlogs are typically stored at /srv/sqldata/ and called: db$HOSTNAME-bin.XXX If you need to explore them, simply ssh to the host and run:

sudo mysqlbinlog -vv --base64-output=DECODE-ROWS db$INSTANCE-bin.XXXXX



This page is a part of the SRE Data Persistence technical documentation
(go here for a list of all our pages)