Multitenancy with Ecto

How do you manage the connections to the DB with this approach? Each dynamic repo will create it’s own connection pool, so the connections per tenant will grow with the number of tenants. If those tenants are databases in the same database server, this can become an issue.

Do you close the connections after each call? Is there a smarter way to manage these connections?