I am aware that I can seperate hosts in the connection string with a comma and it will use different servers: https://www.connectionstrings.com/mysql-connector-net-mysqlconnection/multiple-servers/
for example: Server=serverAddress1, serverAddress2, serverAddress3;Database=myDataBase; Uid=myUsername;Pwd=myPassword;
But I need some information on how it specifically chooses servers. For example, is it round robin? Or does it go in order, until it finds a working one?
If the first one fails, and it moves to the second one, how long would it be before it attempted to use the second one?
I am open to other suggestions for failover connection strings
TIA - Joe