Note
- For V4.3.x, this parameter is available starting with V4.3.5.
- For V4.2.x, this parameter is available starting with V4.2.5.
Description
recover_table_dop specifies the maximum number of tables that can be restored in parallel in the cross-tenant data import phase of table-level restore.
Privilege requirements
Query the parameter
You can use the
SHOW PARAMETERSstatement or theGV$OB_PARAMETERSview to query this parameter in thesystenant and all user tenants.Modify the parameter
You can modify this parameter in the
systenant and all user tenants.
Attributes
| Attribute | Description |
|---|---|
| Type | Int |
| Default value | 0, which indicates that the default parallelism is 1 |
| Value range | [0, +∞) |
| Modifiable | Yes. You can use the ALTER SYSTEM SET statement to modify the parameter. |
| Effective upon OBServer node restart | No. The setting takes effect immediately. |
Considerations
This parameter only controls the parallelism in the cross-tenant data import phase of table-level restore. For more information about the table-level restore process, see Restore process.
For more information about the parallel restore feature, see Perform table-level restore.
Examples
Set the parallelism of single-table restore for the mysql tenant to 6.
obclient> ALTER SYSTEM SET recover_table_dop = 6 TENANT = 'mysql';
