diff --git a/Documentation/monitors/Galera-Monitor.md b/Documentation/monitors/Galera-Monitor.md index 3872c30f7..8e1a403c9 100644 --- a/Documentation/monitors/Galera-Monitor.md +++ b/Documentation/monitors/Galera-Monitor.md @@ -9,7 +9,7 @@ The Galera Monitor is a monitoring module for MaxScale that monitors a Galera cl A minimal configuration for a monitor requires a set of servers for monitoring and a username and a password to connect to these servers. The user requires the REPLICATION CLIENT privilege to successfully monitor the state of the servers. ``` -[MySQL Monitor] +[Galera Monitor] type=monitor module=galeramon servers=server1,server2,server3 @@ -90,11 +90,16 @@ This script will be executed when a server changes its state. The parameter shou script=/home/user/script.sh ``` -This script will be called with the following command line arguments. +### `events` + +A list of event names which cause the script to be executed. If this option is not defined, all events cause the script to be executed. The list must contain a comma separated list of event names. ``` - --event= --initiator= --nodelist= +events=master_down,slave_down ``` + +## Script events + Here is a table of all possible event types and their descriptions. Event Name|Description @@ -107,18 +112,9 @@ server_down|A server with no assigned role has done down server_up|A server with no assigned role has come up synced_down|A synced Galera node has come up synced_up|A synced Galera node has gone down -donor_down|A donor Galera node has come up -donor_up|A donor Galera node has gone down -ndb_down|A MySQL Cluster node has gone down -ndb_up|A MySQL Cluster node has come up lost_master|A server lost Master status lost_slave|A server lost Slave status lost_synced|A Galera node lost synced status -lost_donor|A Galera node lost donor status -lost_ndb|A MySQL Cluster node lost node membership new_master|A new Master was detected new_slave|A new Slave was detected new_synced|A new synced Galera node was detected -new_donor|A new donor Galera node was detected -new_ndb|A new MySQL Cluster node was found - diff --git a/Documentation/monitors/MM-Monitor.md b/Documentation/monitors/MM-Monitor.md new file mode 100644 index 000000000..c9b4a852d --- /dev/null +++ b/Documentation/monitors/MM-Monitor.md @@ -0,0 +1,107 @@ +# Multi-Master Monitor + +## Overview + +The Multi-Master Monitor is a monitoring module for MaxScale that monitors Master-Master replicatio. It assigns master and slave roles inside MaxScale based on whether the read_only parameter on a server is set to off or on. + +## Configuration + +A minimal configuration for a monitor requires a set of servers for monitoring and a username and a password to connect to these servers. The user requires the REPLICATION CLIENT privilege to successfully monitor the state of the servers. + +``` +[Multi-Master Monitor] +type=monitor +module=mmmon +servers=server1,server2,server3 +user=myuser +passwd=mypwd + +``` + +## Optional parameters for all monitors + +Here are optional parameters that are common for all the monitors. + +### `monitor_interval` + +This is the time the monitor waits between each cycle of monitoring. The default value of 10000 milliseconds (10 seconds) should be lowered if you want a faster response to changes in the server states. The value is defined in milliseconds and the smallest possible value is 100 illiseconds. + +``` +monitor_interval=2500 +``` + +### `backend_connect_timeout` + +This parameter controls the timeout for connecting to a monitored server. It is in seconds and the minimum value is 1 second. The default value for this parameter is 3 seconds. + +``` +backend_connect_timeout=6 +``` + +### `backend_write_timeout` + +This parameter controls the timeout for writing to a monitored server. It is in seconds and the minimum value is 1 second. The default value for this parameter is 2 seconds. + +``` +backend_write_timeout=4 +``` + +### `backend_read_timeout` + +This parameter controls the timeout for reading from a monitored server. It is in seconds and the minimum value is 1 second. The default value for this parameter is 1 seconds. + +``` +backend_read_timeout=2 +``` + +## Multi-Master Monitor optional parameters + +These are optional parameters specific to the Multi-Master Monitor. + +### `detect_stale_master` + +Allow previous master to be available even in case of stopped or misconfigured replication. This allows services that depend on master and slave roles to continue functioning as long as the master server is available. + +This is a situation which can happen if all slave servers are unreachable or the replication breaks for some reason. + +``` +detect_stale_master=true +``` + +### `script` + +This script will be executed when a server changes its state. The parameter should be an absolute path to the script or it should be in the executable path. + +``` +script=/home/user/script.sh +``` + +This script will be called with the following command line arguments. + +``` + --event= --initiator= --nodelist= +``` +### `events` + +A list of event names which cause the script to be executed. If this option is not defined, all events cause the script to be executed. The list must contain a comma separated list of event names. + +``` +events=master_down,slave_down +``` + +## Script events + +Here is a table of all possible event types and their descriptions. + +Event Name|Description +----------|---------- +master_down|A Master server has gone down +master_up|A Master server has come up +slave_down|A Slave server has gone down +slave_up|A Slave server has come up +server_down|A server with no assigned role has done down +server_up|A server with no assigned role has come up +lost_master|A server lost Master status +lost_slave|A server lost Slave status +new_master|A new Master was detected +new_slave|A new Slave was detected diff --git a/Documentation/monitors/MySQL-Monitor.md b/Documentation/monitors/MySQL-Monitor.md index 4e6e949e0..a3560c548 100644 --- a/Documentation/monitors/MySQL-Monitor.md +++ b/Documentation/monitors/MySQL-Monitor.md @@ -90,6 +90,16 @@ This script will be called with the following command line arguments. ``` --event= --initiator= --nodelist= ``` +### `events` + +A list of event names which cause the script to be executed. If this option is not defined, all events cause the script to be executed. The list must contain a comma separated list of event names. + +``` +events=master_down,slave_down +``` + +## Script events + Here is a table of all possible event types and their descriptions. Event Name|Description @@ -100,20 +110,8 @@ slave_down|A Slave server has gone down slave_up|A Slave server has come up server_down|A server with no assigned role has done down server_up|A server with no assigned role has come up -synced_down|A synced Galera node has come up -synced_up|A synced Galera node has gone down -donor_down|A donor Galera node has come up -donor_up|A donor Galera node has gone down -ndb_down|A MySQL Cluster node has gone down -ndb_up|A MySQL Cluster node has come up lost_master|A server lost Master status lost_slave|A server lost Slave status -lost_synced|A Galera node lost synced status -lost_donor|A Galera node lost donor status -lost_ndb|A MySQL Cluster node lost node membership new_master|A new Master was detected new_slave|A new Slave was detected -new_synced|A new synced Galera node was detected -new_donor|A new donor Galera node was detected -new_ndb|A new MySQL Cluster node was found diff --git a/Documentation/monitors/NDB-Cluster-Monitor.md b/Documentation/monitors/NDB-Cluster-Monitor.md new file mode 100644 index 000000000..a2e608b7e --- /dev/null +++ b/Documentation/monitors/NDB-Cluster-Monitor.md @@ -0,0 +1,102 @@ +# NDB Cluster Monitor + +## Overview + +The MySQL Cluster Monitor is a monitoring module for MaxScale that monitors Master-Master replicatio. It assigns master and slave roles inside MaxScale based on whether the read_only parameter on a server is set to off or on. + +## Configuration + +A minimal configuration for a monitor requires a set of servers for monitoring and a username and a password to connect to these servers. The user requires the REPLICATION CLIENT privilege to successfully monitor the state of the servers. + +``` +[MySQL Cluster Monitor] +type=monitor +module=ndbclustermon +servers=server1,server2,server3 +user=myuser +passwd=mypwd + +``` + +## Optional parameters for all monitors + +Here are optional parameters that are common for all the monitors. + +### `monitor_interval` + +This is the time the monitor waits between each cycle of monitoring. The default value of 10000 milliseconds (10 seconds) should be lowered if you want a faster response to changes in the server states. The value is defined in milliseconds and the smallest possible value is 100 illiseconds. + +``` +monitor_interval=2500 +``` + +### `backend_connect_timeout` + +This parameter controls the timeout for connecting to a monitored server. It is in seconds and the minimum value is 1 second. The default value for this parameter is 3 seconds. + +``` +backend_connect_timeout=6 +``` + +### `backend_write_timeout` + +This parameter controls the timeout for writing to a monitored server. It is in seconds and the minimum value is 1 second. The default value for this parameter is 2 seconds. + +``` +backend_write_timeout=4 +``` + +### `backend_read_timeout` + +This parameter controls the timeout for reading from a monitored server. It is in seconds and the minimum value is 1 second. The default value for this parameter is 1 seconds. + +``` +backend_read_timeout=2 +``` + +## MySQL Cluster Monitor optional parameters + +These are optional parameters specific to the MySQL Cluster Monitor. + +### `script` + +This script will be executed when a server changes its state. The parameter should be an absolute path to the script or it should be in the executable path. + +``` +script=/home/user/script.sh +``` + +This script will be called with the following command line arguments. + +``` + --event= --initiator= --nodelist= +``` +### `events` + +A list of event names which cause the script to be executed. If this option is not defined, all events cause the script to be executed. The list must contain a comma separated list of event names. + +``` +events=master_down,slave_down +``` + +## Script events + +Here is a table of all possible event types and their descriptions that the MySQL Cluster monitor can be called with. + +Event Name|Description +----------|---------- +master_down|A Master server has gone down +master_up|A Master server has come up +slave_down|A Slave server has gone down +slave_up|A Slave server has come up +server_down|A server with no assigned role has done down +server_up|A server with no assigned role has come up +ndb_down|A MySQL Cluster node has gone down +ndb_up|A MySQL Cluster node has come up +lost_master|A server lost Master status +lost_slave|A server lost Slave status +lost_ndb|A MySQL Cluster node lost node membership +new_master|A new Master was detected +new_slave|A new Slave was detected +new_ndb|A new MySQL Cluster node was found +