All Products
Search
Document Center

Lindorm:Group node management

Last Updated:Mar 28, 2026

When multiple users or services share a Lindorm instance, batch read/write operations from offline services can disrupt time-sensitive online services. Group management resolves this by assigning region servers and tables to isolated groups, so each group's requests are handled exclusively by its own region servers.

This topic describes how to create and manage groups in the Lindorm cluster management system.

How it works

A group binds a set of region servers to a set of tables. All regions of the tables in a group are distributed only to the region servers in that same group.

The following diagram shows a two-group setup: RegionServer1 and RegionServer2 are in Group1, and RegionServer3 and RegionServer4 are in Group2. Table1 and Table2 belong to Group1, so their regions are served exclusively by RegionServer1 and RegionServer2. Table3 and Table4 belong to Group2, so their regions are served exclusively by RegionServer3 and RegionServer4.

image

Prerequisites

Before you begin, ensure that you have:

View group information

  1. In the left-side navigation pane, choose Cluster Manager > Server Manager.

  2. In the Data overview section, view all groups for the current cluster.

Note

If no group has been created, a group named default is created automatically, and all region servers and tables belong to it.

分组概览

Create a group

  1. In the left-side navigation pane, choose Cluster Manager > Server Manager.

  2. Click + Add in the upper-right corner.

    p482558

  3. In the New group dialog box, enter a Group name.

    添加分组名

  4. Click OK.

Note

A newly created group contains no region servers or tables. Add region servers and tables to the group manually after creation.

Move a region server to a group

Important
  • All region servers belong to the default group by default. Move region servers to the appropriate group before using them.

  • If you add a table to a group that does not contain region servers, the region of the table becomes inaccessible because no region server is available for the region.

  • Add at least two region servers to each group. If a group has only one region server and that server goes down, all tables in the group become inaccessible. With two or more region servers, regions are redistributed to the remaining servers automatically.

  • When you move a region server, the regions that are being accessed on the region server are redistributed to other region servers in the same group during the move.

  1. In the left-side navigation pane, choose Cluster Manager > Server Manager.

  2. In the Operation column for the region server, choose More > Move group.

  3. In the Move group dialog box, select the target group from the Target group drop-down list.

  4. Click OK.

Move a table to a group

Warning

Do not move a table to a group that has no region servers. The table will become inaccessible.

  1. On the Overview page, click Move group in the Operation column.

    image.png

  2. In the Move group dialog box, select the target group from the Target group drop-down list.

  3. Click OK.

Delete a group

Important

Remove all region servers and tables from the group before deleting it.

  1. In the left-side navigation pane, choose Cluster Manager > Server Manager.

  2. In the Operation column for the group, choose More > Delete.

    image.png

  3. Click OK to confirm.

View instance and cluster information

  1. In the left-side navigation pane, choose Cluster Manager > Server Manager.

  2. In the Instance/Cluster info section, view details such as the database type and the on-premises data center where the database is deployed.

  3. To adjust read and write permissions for the current instance or cluster, choose More > ReadWriteControl in the Operation column.

Best practices

Minimum region servers per group

Add at least two region servers to each group. A single-server group has no fault tolerance: if the server goes down, all tables in the group become inaccessible. With two or more servers, Lindorm redistributes regions to the remaining servers automatically.

Follow the setup order

Always follow the sequence: create group, add region servers, move tables. Moving tables into a group before its region servers are assigned makes those tables inaccessible immediately.

Plan group boundaries before migration

Identify which workloads should be isolated before creating groups. For example, place online transaction tables in one group and batch analytics tables in another. Plan your group structure before production traffic begins to avoid disruption during reassignment.