MySQL - Ubuntu- MySQL InnoDB Cluster service (or) daemon name

124 Views Asked by At

MySQL - In Ubuntu OS, What is the service (or) daemon name which is used by the MySQL Innodb Cluster to replicate the Data?

1

There are 1 best solutions below

0
On BEST ANSWER

There is no service or daemon used by MySQL InnoDB Cluster to replicate the data. Replication is done by MySQL Server itself.

MySQL InnoDB Cluster relies on MySQL Group Replication to provide the mechanism to replicate data within InnoDB clusters.

Group Replication is a plugin for the standard MySQL Server. The plugin provides virtually synchronous replication, with built-in conflict detection/handling and consistency guarantees. It enables multi-primary (master) setups but by default, it operates in single-primary mode.

Please check the InnoDB Cluster userguide for more information.