slave_parallel_type
parameter to the newly added value TABLE
. MySQL 8.0 does not support the TABLE mode.
Additionally, the cdb_slave_thread_status
table is added to the information_schema
database to display the thread status of the replica node.Parameter | Effective Immediately | Type | Default Value | Valid Values/Value Range | Description |
slave_parallel_type | Yes | char* | SCHEMA | SCHEMA/TABLE | The level of parallel replication on the replica node. SCHEMA: Replication events of different schemas can be executed in parallel. TABLE: Replication events of different tables can be executed in parallel. |
Parameter | Effective Immediately | Type | Default Value | Valid Values/Value Range | Description |
slave_parallel_type | Yes | char* | LOGICAL_CLOCK | DATABASE/TABLE/LOGICAL_CLOCK | The level of parallel replication on the replica node. DATABASE: Replication events of different databases can be executed in parallel. TABLE: Replication events of different tables can be executed in parallel. LOGICAL_CLOCK: Replication events of the same logical clock on the host can be executed in parallel. |
Parameter | Effective Immediately | Type | Default Value | Valid Values/Value Range | Description |
slave_parallel_type | Yes | char* | LOGICAL_CLOCK | DATABASE/LOGICAL_CLOCK | The level of parallel replication on the replica node. DATABASE: Replication events of different databases can be executed in parallel. LOGICAL_CLOCK: Replication events of the same logical clock on the host can be executed in parallel. |
Was this page helpful?