Multi-tenancy: Individual database per tenant

前端 未结 2 1700
星月不相逢
星月不相逢 2021-02-15 18:11

We are developing a multi-tenant application. With respect to architecture, we have designed shared middle tier for business logic and one database per tenant for data persisten

2条回答
  •  走了就别回头了
    2021-02-15 19:03

    Another method of restricting the number of connection pools per app server is to use Application Request Routing (ARR) to divide up your tenants and assign them to subsets of the web tier. This lends itself to a more scalable "pod" architecture where a "pod" is a small collection of web/app servers coupled to a subset of the databases. A good article on this approach is here: http://azure.microsoft.com/blog/2013/10/31/application-request-routing-in-csf/

    If you are building a multi-tenant DB application Azure you should also check-out the new Elastic Scale client libraries that simplify data-dependent routing and facilitate cross-shard queries and management operations. http://azure.microsoft.com/en-us/documentation/articles/sql-database-elastic-scale-documentation-map/

提交回复
热议问题