Important
Self-managed SingleStore will soon transition from version 9.1 RC to version 10. This new semantic versioning scheme will provide SingleStore with finer control over engine and feature releases that were not possible with the current versioning scheme.
In the interim, SingleStore 9.1 RC can be used to preview, evaluate, and provide feedback on the new and upcoming features in SingleStore 10 prior to its general availability. Ahead of this transition, SingleStore 9.0 is recommended for production workloads, which can later be upgraded to SingleStore 10.
Setting the Redundancy Level
On this page
To use availability groups in a cluster, you need to set the redundancy level, which specifies the maximum number (1 or 2) of availability groups.
Setting the Engine Variable
Use the SET GLOBAL command to change redundancy_ engine variable on the master aggregator at run time:
SET @@GLOBAL.redundancy_level = {1 | 2};
You can inspect the current value with the SELECT GLOBAL command:
SELECT @@GLOBAL.redundancy_level;
Adding and Removing Leaves
Use ADD LEAF and REMOVE LEAF to add leaves to, and remove leaves from, a SingleStore cluster.
Adding and Removing Child Aggregators
Use ADD AGGREGATOR and REMOVE AGGREGATOR to add and remove child aggregators from a SingleStore cluster.
Note
These commands must be run against the Master Aggregator.
Last modified: