Intente agrupar conexiones
De documentos oficiales:
Al implementar la agrupación de conexiones, puede reutilizar las conexiones 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 obtener más información, consulte:https://dev .mysql.com/doc/connector-python/en/connector-python-connection-pooling.html