Tente agrupar conexões
Dos documentos oficiais:
Implementando o pool de conexões, você pode reutilizar as conexões existentes
dbconfig = {
"database": "test",
"user": "joe"
}
cnxpool = mysql.connector.connect(pool_name = "mypool",
pool_size = 3, # or any number to suit your need
**dbconfig)
# then to get a connection from pool use
cnx = cnxpool.get_connection()
Para saber mais, consulte:https://dev .mysql.com/doc/connector-python/en/connector-python-connection-pooling.html