Determining capacity and usage for your license
On this page
Using SingleStoreDB directly
You can use SHOW STATUS EXTENDED LIKE "%capacity%"
to see your license capacity compared to your current usage.
SHOW STATUS EXTENDED LIKE "%capacity%";
+--------------------------+-----------+
| Variable_name | Value |
+--------------------------+-----------+
| License_capacity | 131072 MB |
| Maximum_cluster_capacity | 131072 MB |
| Used_cluster_capacity | 13314 MB |
+--------------------------+-----------+
And if you have a unit-based license, you will see the following output:
SHOW STATUS EXTENDED LIKE "%capacity%";
+--------------------------+---------+
| Variable_name | Value |
+--------------------------+---------+
| License_capacity | 4 units |
| Maximum_cluster_capacity | 4 units |
| Used_cluster_capacity | 2 units |
+--------------------------+---------+
License_
and Maximum_
is your allowed capacity, while Used_
shows what you have used against the capacity.
To understand how nodes, host machines, and license units relate to each other, see the SingleStoreDB FAQ.
Last modified: September 18, 2023