Hi,
I am currently working on an Ignition 8.1.42 project and I have a question regarding database architecture best practices.
I have multiple databases (schemas) hosted on the same MySQL instance. I am wondering which approach is more efficient and performant:
-
Single Gateway Connection: Create one Database Connection in the Gateway and use dot notation in my queries (e.g.,
SELECT * FROM other_db.table). -
Multiple Gateway Connections: Create a dedicated Database Connection for each schema.
My main concerns are resource management (connection pooling), ease of maintenance, and overall Gateway performance. Are there specific scenarios where one approach is significantly better than the other in Ignition?
Thanks