Here are the basic steps to clone a MySQL instance using the new CLONE command directly from SQL:
1. Connect to the source instance you want to clone from.
2. Issue the CLONE statement to create a new instance from the source. For example:
CLONE INSTANCE FROM 'mysql://user:password@source_host:3306/' TO 'mysql://user:password@target_host:3306/';
3. The clone operation will copy over the data files, redo logs and configuration from the source to the target instance.
4. Once complete, the new cloned instance is ready for use as a read replica or independent instance as needed.
By automating the provisioning