more non-transactional tables has finished executing (if there is any such replication group), or until the user issues a KILL QUERY or KILL CONNECTION statement. Note that STOP SLAVE doesn't delete the connection permanently. Next time you execute START SLAVE or the MariaDB server restarts, the replica connection is restored with it's original arguments. If you want to delete a connection, you should execute RESET SLAVE. STOP ALL SLAVES --------------- STOP ALL SLAVES stops all your running replicas. It will give you a note for every stopped connection. You can check the notes with SHOW WARNINGS. connection_name --------------- The connection_name option is used for multi-source replication. If there is only one nameless master, or the default master (as specified by the default_master_connection system variable) is intended, connection_name can be omitted. If provided, the STOP SLAVE statement will apply to the specified master. connection_name is case-insensitive. MariaDB starting with 10.7.0 ---------------------------- The FOR CHANNEL keyword was added for MySQL compatibility. This is identical as using the channel_name directly after STOP SLAVE. STOP REPLICA ------------ MariaDB starting with 10.5.1 ---------------------------- STOP REPLICA is an alias for STOP SLAVE from MariaDB 10.5.1. URL: https://mariadb.com/kb/en/stop-replica/https://mariadb.com/kb/en/stop-replica/