Skip to content

Latest commit

 

History

History
95 lines (68 loc) · 9.58 KB

dotnet-develop-multitenant-applications.md

File metadata and controls

95 lines (68 loc) · 9.58 KB
title description services documentationcenter author manager editor ms.assetid ms.service ms.workload ms.tgt_pltfrm ms.topic ms.date ms.author
Multi-Tenant Web Application Pattern | Microsoft Docs
Find architectural overviews and design patterns that describe how to implement a multi-tenant web application on Azure.
.net
wadepickett
wpickett
4f0281d2-1555-42b0-a99d-1222fade0b0f
active-directory
identity
na
article
06/05/2015
wpickett

Multitenant Applications in Azure

A multitenant application is a shared resource that allows "users in separate tenants" to view the application as though it was their own. A typical scenario that lends itself to a multitenant application is one in which all users of the application from different tenants may wish to customize the user experience but otherwise have the same basic business requirements. Examples of large multitenant applications are Microsoft 365, Outlook.com, and visualstudio.com.

From an application provider's perspective, the benefits of multitenancy mostly relate to operational and cost efficiencies. One version of your application can meet the needs of many tenants/customers, allowing consolidation of system administration tasks such as monitoring, performance tuning, software maintenance, and data backups.

The following provides a list of the most significant goals and requirements from a provider's perspective.

  • Provisioning: You must be able to provision new tenants for the application. For multitenant applications with a large number of tenants, it is usually necessary to automate this process by enabling self-service provisioning.
  • Maintainability: You must be able to upgrade the application and perform other maintenance tasks while multiple tenants are using it.
  • Monitoring: You must be able to monitor the application at all times to identify any problems and to troubleshoot them. This includes monitoring how each tenant is using the application.

A properly implemented multitenant application provides the following benefits to users.

  • Isolation: The activities of individual tenants do not affect the use of the application by other tenants. Tenants cannot access each other's data. It appears to the tenant as though they have exclusive use of the application.
  • Availability: Individual tenants want the application to be constantly available, perhaps with guarantees defined in an SLA. Again, the activities of other tenants should not affect the availability of the application.
  • Scalability: The application scales to meet the demand of individual tenants. The presence and actions of other tenants should not affect the performance of the application.
  • Costs: Costs are lower than running a dedicated, single-tenant application because multi-tenancy enables the sharing of resources.
  • Customizability. The ability to customize the application for an individual tenant in various ways such as adding or removing features, changing colors and logos, or even adding their own code or script.

In short, while there are many considerations that you must take into account to provide a highly scalable service, there are also multiple goals and requirements that are common to many multitenant applications. Some may not be relevant in specific scenarios, and the importance of individual goals and requirements will differ in each scenario. As a provider of the multitenant application, you'll also have goals and requirements, such as meeting the tenant's needs, profitability, billing, multiple service levels, provisioning, maintainability monitoring, and automation.

For more information on additional design considerations of a multitenant application, see Hosting a Multi-Tenant Application on Azure and Cross-Tenant Communication using Azure Service Bus Sample. For information on common data architecture patterns of multi-tenant software-as-a-service (SaaS) database applications, see Design Patterns for Multi-tenant SaaS Applications with Azure SQL Database.

Cross-Tenant Communication using Azure Service Bus Sample

The Cross-Tenant Communication using Azure Service Bus Sample demonstrates a multi-tenanted solution handling cross-tenant communication between a provider and one or more of its customers using Service Bus message queues. The provider comunicates securely with each of its customers, and each customer securely with the provider. To download the complete sample with instructions, see Cross-Tenant Communication using Azure Service Bus Sample.

Azure features for Multitenant Applications

Azure provides many features that allow you to address the key problems encountered when designing a multitenant system.

Isolation

  • Segment Website Tenants by Host Headers with or without TLS communication
  • Segment Website Tenants by Query Parameters
  • Web Services in Worker Roles
    • Worker Roles that typically process data on the backend of an application.
    • Web Roles that typically act as the frontend for applications.

Storage

Data management such as Azure SQL Database or Azure Storage services such as the Table service, which provides services for storage of large amounts of unstructured data and the Blob service, which provides services to store large amounts of unstructured text or binary data such as video, audio and images.

  • Securing Multitenant Data in SQL Database per-tenant SQL Server logins.
  • Using Azure Tables for Application Resources by specifying a container level access policy, you can have the ability to adjust permissions without having to issue new URL's for the resources protected with shared access signatures.
  • Azure Queues for Application Resources Azure queues are commonly used to drive processing on behalf of tenants, but may also be used to distribute work required for provisioning or management.
  • Service Bus Queues for Application Resources that pushes work to a shared service, you can use a single queue where each tenant sender only has permissions (as derived from claims issued from ACS) to push to that queue, while only the receivers from the service have permission to pull from the queue the data coming from multiple tenants.

Connection and Security Services

  • Azure Service Bus, a messaging infrastructure that sits between applications allowing them to exchange messages in a loosely coupled way for improved scale and resiliency.

Networking Services

Azure provides several networking services that support authentication, and improve manageability of your hosted applications. These services include the following:

  • Azure Virtual Network lets you provision and manage virtual private networks (VPNs) in Azure as well as securely link these with on-premises IT infrastructure.
  • Virtual Network Traffic Manager allows you to load balance incoming traffic across multiple hosted Azure services whether they're running in the same datacenter or across different datacenters around the world.
  • Azure Active Directory (Azure AD) is a modern, REST-based service that provides identity management and access control capabilities for your cloud applications. Using Azure AD for Application Resources provides an easy way of authenticating and authorizing users to gain access to your web applications and services while allowing the features of authentication and authorization to be factored out of your code.
  • Azure Service Bus provides a secure messaging and data flow capability for distributed and hybrid applications, such as communication between Azure hosted applications and on-premises applications and services, without requiring complex firewall and security infrastructures. Using Service Bus Relay for Application Resources to access the services that are exposed as endpoints may belong to the tenant (for example, hosted outside of the system, such as on-premises), or they may be services provisioned specifically for the tenant (because sensitive, tenant-specific data travels across them).

Provisioning Resources

Azure provides a number of ways to provision new tenants for the application. For multitenant applications with a large number of tenants, it is usually necessary to automate this process by enabling self-service provisioning.

  • Worker roles allow you to provision and de-provision per tenant resources (such as when a new tenant signs-up or cancels), collect metrics for metering use, and manage scale following a certain schedule or in response to the crossing of thresholds of key performance indicators. This same role may also be used to push out updates and upgrades to the solution.

  • Azure Blobs can be used to provision compute or pre-initialized storage resources for new tenants while providing container level access policies to protect the compute service Packages, VHD images and other resources.

  • Options for provisioning SQL Database resources for a tenant include:

    • DDL in scripts or embedded as resources within assemblies.
    • SQL Server 2008 R2 DAC Packages deployed programmatically.
    • Copying from a master reference database.
    • Using database Import and Export to provision new databases from a file.