{question}
How can I check what storage groups my database has and their statuses?
{question}
{answer}
The information is available by the following command:
$ nuocmd get storage-groups --db-name db01
Here is an example of the output:
StorageGroup(archive_states={}, db_name=db01, id=1, leader_candidates=[], name=ALL, process_states={}, state=Available)
StorageGroup(archive_states={}, db_name=db01, id=2, leader_candidates=[12], name=UNPARTITIONED, process_states={12: RUNNING}, state=Available)
You may find more information about table partitions and storage groups here.
{answer}
Comments