Migrate Cluster
On this page
The following semi-automated process can be used to migrate from MemSQL Ops to SingleStore Tools.
Command output examples are provided.
Note
Unless explicitly stated otherwise, perform all of the following steps on/from the Master Aggregator.
In the commands provided, replace all instances of content in angle brackets with the referenced substitute.
Change to the /opt/singlestore/singlestoredb-toolbox-<version>
directory first before running all commands.
In some cases, a script may require non-password access to all hosts in the cluster.
Review Current Cluster
Use MemSQL Ops to validate the SingleStore cluster health.
/path/to/memsql-ops/memsql-ops memsql-list
ID Agent Id Process State Cluster State Role Host Port Version
44CDE71 A0c8a89 RUNNING CONNECTED MASTER 10.0.0.98 3306 x.x
3FD3FCF Aa5eab9 RUNNING CONNECTED AGGREGATOR 10.0.0.133 3306 x.x
9C0841F A04f65f RUNNING CONNECTED LEAF 10.0.0.236 3306 x.x
9A551DA A5f0572 RUNNING CONNECTED LEAF 10.0.0.136 3306 x.x
Confirm Connectivity
Confirm that memsql-ops agent-ssh
can be used to SSH (open a secure shell) into each host in the cluster.
Note: After invoking the following interactive prompt, exit the command immediately by using Control-C without actually connecting to the hosts via SSH.
/path/to/memsql-ops/memsql-ops agent-ssh
Index ID Host Port Role State Version Has Credential
1 Aeea1ec 10.0.0.98 9000 PRIMARY ONLINE x.x No
2 A005a87 10.0.0.133 9000 FOLLOWER ONLINE x.x Yes
3 Aa9367f 10.0.0.236 9000 FOLLOWER ONLINE x.x Yes
4 Ad90aba 10.0.0.136 9000 FOLLOWER ONLINE x.x Yes
In the output displayed above, only the main host where the Ops primary agent runs should reflectNo
for Has Credential
.
To configure ssh
keys for each host, run the memsql-ops agent-set-credential
command.
Alternatively, use the following script to automate this process.ssh
keys where applicable.
/path/to/memsql-ops/memsql-ops agent-list -q | xargs -n 1 /path/to/memsql-ops/memsql-ops agent-set-credential -i </key-file/including/path>
Enable Manual Control
Enable manual control of the SingleStore cluster to prevent MemSQL Ops from interfering with the SingleStore Toolbox install.
/path/to/memsql-ops/memsql-ops cluster-manual-control --enable
The cluster is now under manual control. We will not automatically restart stopped nodes, update license files, etc.
Caution
MemSQL Ops will not automatically restart nodes that fail during the migration unless manual control of the cluster is enabled.
Add a License
If you are currently using the Odin license, which uses an earlier format, update it to the Freya license with the latest format obtained from the Cloud Portal.
/path/to/memsql-ops/memsql-ops license-list -j
The license marked as best
is the one in current use, and the expected format of the license is <HASH>==
.
/path/to/memsql-ops/memsql-ops license-add --license-key <license>
Successfully added license.
Set root Password
Set the root
password for all nodes in the cluster.<password>
in the following command.
/path/to/memsql-ops/memsql-ops memsql-list -q | xargs -n 1 \/path/to/memsql-ops/memsql-ops memsql-update-root-password --no-confirmation -p <password>
Generate Cluster Migration File
Run the following command to generate a cluster migration YAML file that will pass the cluster information from MemSQL Ops to SingleStore Toolbox.
/path/to/memsql-ops/memsql-ops migration-setup
Check succeeded: All nodes on MemSQL version x.x
Check succeeded: All nodes online and connected
Check succeeded: All nodes with supported license version
All checks passed. Migration configuration file written to /path/to/memsql-ops/data/cache/migration_config.yml
Modify Migration File
At the bottom of the YAML file:
-
Change
memsql_
toserver_ version memsql_
server_ file_ path: /home/<user>/s2db/singlestoredb-server-<version>. tar. gz -
Change
package_
totype: rpm package_
type: tar These two lines should then resemble:
memsql_server_file_path: /home/<user>/s2db/singlestoredb-server-<version>.tar.gz package_type: tar
Add Root Password
Run the following command to add the root_
to the end of the cluster migration YAML file.<password>
.
echo 'root_password: <password>' >> <cluster_file>
Deploy Migration File
Use the cluster migration YAML generated by the previous command.
./sdb-deploy setup-cluster --cluster-file <cluster_file>
Confirm Registered Hosts
Use SingleStore Toolbox to confirm that all hosts have been registered.
./sdb-toolbox-config list-hosts
+------------+------------+-------------+--------------------------+
| Host | Local Host | SSH address | Identity File |
+------------+------------+-------------+--------------------------+
| 10.0.0.98 | No | 10.0.0.98 | /home/<user>/.ssh/id_rsa |
| 10.0.0.133 | No | 10.0.0.133 | /home/<user>/.ssh/id_rsa |
| 10.0.0.136 | No | 10.0.0.136 | /home/<user>/.ssh/id_rsa |
| 10.0.0.236 | No | 10.0.0.236 | /home/<user>/.ssh/id_rsa |
+------------+------------+-------------+--------------------------+
Confirm Registered Nodes
Use SingleStore Toolbox to confirm that all nodes have been registered.
./sdb-admin list-nodes
+------------+------------+------------+------+---------------+--------------+---------+----------------+--------------------+
| MemSQL ID | Role | Host | Port | Process State | Connectable? | Version | Recovery State | Availability Group |
+------------+------------+------------+------+---------------+--------------+---------+----------------+--------------------+
| 0EAE75B920 | Master | 10.0.0.98 | 3306 | Running | True | x.x | Online | |
| 35B6AA0317 | Aggregator | 10.0.0.133 | 3306 | Running | True | x.x | Online | |
| B964A18F18 | Leaf | 10.0.0.136 | 3306 | Running | True | x.x | Online | 1 |
| 1A8EDD42BB | Leaf | 10.0.0.236 | 3306 | Running | True | x.x | Online | 2 |
+------------+------------+------------+------+---------------+--------------+---------+----------------+--------------------+
Restart Nodes
Use SingleStore Toolbox to restart all nodes.
./sdb-admin restart-node --all
For high-availability clusters, you may include the --online
option to perform a rolling restart of the cluster, which allows the workload to continue while the nodes are restarted.
./sdb-admin restart-node --all --online
Warning
While this step is underway, the node state may be registered incorrectly in SingleStore Toolbox (as displayed by sdb-admin list-nodes
).SHOW LEAVES
or SHOW AGGREGATORS
executed in a database connection to the Master Aggregator.
Confirm Node Restart
Confirm that all nodes have restarted.
./sdb-admin list-nodes
+------------+------------+------------+------+---------------+--------------+---------+----------------+--------------------+
| MemSQL ID | Role | Host | Port | Process State | Connectable? | Version | Recovery State | Availability Group |
+------------+------------+------------+------+---------------+--------------+---------+----------------+--------------------+
| D785AA80D7 | Master | 10.0.0.98 | 3306 | Running | True | x.x | Online | |
| 9098564B01 | Aggregator | 10.0.0.133 | 3306 | Running | True | x.x | Online | |
| 2189856FC2 | Leaf | 10.0.0.136 | 3306 | Running | True | x.x | Online | 2 |
| 3094B68557 | Leaf | 10.0.0.236 | 3306 | Running | True | x.x | Online | 1 |
+------------+------------+------------+------+---------------+--------------+---------+----------------+--------------------+
Unmonitor Nodes
Once SingleStore Toolbox is managing the SingleStore cluster, the competing MemSQL Ops management system must be uninstalled.
Use MemSQL Ops to list all running nodes.
/path/to/memsql-ops/memsql-ops memsql-list
ID Agent Id Process State Cluster State Role Host Port Version
44CDE71 A0c8a89 RUNNING CONNECTED MASTER 10.0.0.98 3306 x.x
3FD3FCF Aa5eab9 RUNNING CONNECTED AGGREGATOR 10.0.0.133 3306 x.x
9C0841F A04f65f RUNNING CONNECTED LEAF 10.0.0.236 3306 x.x
9A551DA A5f0572 RUNNING CONNECTED LEAF 10.0.0.136 3306 x.x
Use MemSQL Ops to stop monitoring each SingleStore node.
Use the IDs from the ID
column in the MemSQL Ops output.
Caution
Do not remove the leaf nodes if prompted.
Main Host
Run the following command on the main host, which is usually the host of the Master Aggregator.
/path/to/memsql-ops/memsql-ops memsql-unmonitor 44CDE71
2019-07-02 16:30:23: J9fe705 [INFO] Stopping monitoring for MemSQL node ABECB9CFBB84C5369982BE10A85EC050D20486B0
2019-07-02 16:30:23: J9fe705 [INFO] No longer monitoring MemSQL node ABECB9CFBB84C5369982BE10A85EC050D20486B0
Unmonitor Remaining Nodes
Child Aggregator
/path/to/memsql-ops/memsql-ops memsql-unmonitor 3FD3FCF
2019-07-02 16:30:54: J6fb0f3 [INFO] Stopping monitoring for MemSQL node 4DF1BC43819C21D33B6D6AAE02C8851F40709FDF
2019-07-02 16:30:54: J6fb0f3 [INFO] No longer monitoring MemSQL node 4DF1BC43819C21D33B6D6AAE02C8851F40709FDF
Leaf Node 1
/path/to/memsql-ops/memsql-ops memsql-unmonitor 9C0841F
Would you additionally like to remove the leaf node from the SingleStore cluster? (You can specify this behavior with --remove-leaf.) [y/n] n
2019-07-02 16:31:22: J2eae2d [INFO] Stopping monitoring for MemSQL node AF1C3A169BFE4FD792163909BDB592C65D0E37AF
2019-07-02 16:31:22: J2eae2d [INFO] No longer monitoring MemSQL node AF1C3A169BFE4FD792163909BDB592C65D0E37AF
Note: If a leaf is removed unintentionally, connect to the database and run ADD LEAF
to add it back to the cluster: For example, on the Master Aggregator: memsql> ADD LEAF 'root'@'<<leaf node IP>>':3307
Leaf Node 2
memsql-ops memsql-unmonitor 9A551DA
Would you additionally like to remove the leaf node from the SingleStore cluster? (You can specify this behavior with --remove-leaf.) [y/n] n
2019-07-02 16:32:01: J52843c [INFO] Stopping monitoring for MemSQL node 143B60B39072A9E9C16D2D8ACC16E6997286079E
2019-07-02 16:32:01: J52843c [INFO] No longer monitoring MemSQL node 143B60B39072A9E9C16D2D8ACC16E6997286079E
Note: If a leaf is removed unintentionally, connect to the database and run ADD LEAF
to add it back to the cluster: For example, on the Master Aggregator: memsql> ADD LEAF 'root'@'<<leaf node IP>>':3307
Last modified: March 14, 2024