To operate more easily a MySQL Group Replication (InnoDB Cluster), the Group Replication plugins provides some UDFs.
If you have read the recent article from Tiago Vale about the Group Replication Communication Protocol, you may have heard about two new UDFs allowing to get or set the communication protocol.
So what are all the UDFs provided with the Group Replication and what’s their purpose ?
SELECT UDF_NAME FROM performance_schema.user_defined_functions WHERE UDF_NAME LIKE 'group_repl%'; +-------------------------------------------------+ | UDF_NAME | +-------------------------------------------------+ | group_replication_get_communication_protocol | | group_replication_get_write_concurrency | | group_replication_set_as_primary | …[Read more]