Azure Unit-2 Notes
Azure Unit-2 Notes
Azure Unit-2 Notes
TABLE OF CONTENTS
S.NO TITLE
1. Describe the core architectural components of Azure such as Azure Regions and Region
Pairs, Availability Zones, Azure Subscriptions, Management Groups, Resource Groups and
Resources
2. Describe Azure compute and networking services such as VMs, Functions, App Service Web
Apps and Azure VNET
3. Describe Azure storage services such as Azure Storage Account, Storage Types, Data
Migration Options like Storage Explorer, Import Export and Data Box
4. Azure Functions
5. Describe Azure Database Services such as SQL Database
1.CORE ARCHITECTURAL COMPONENTS
Resource groups are simply groupings of resources. When you create a resource, you’re required to
place it into a resource group. While a resource group can contain many resources, a single resource
can only be in one resource group at a time. Some resources may be moved between resource groups,
but when you move a resource to a new group, it will no longer be associated with the former group.
Additionally, resource groups can't be nested, meaning you can’t put resource group B inside of
resource group A.
Resource groups provide a convenient way to group resources together. When you apply an action to
a resource group, that action will apply to all the resources within the resource group. If you delete a
resource group, all the resources will be deleted. If you grant or deny access to a resource group,
you’ve granted or denied access to all the resources within the resource group.
When you’re provisioning resources, it’s good to think about the resource group structure that best
suits your needs.
For example, if you’re setting up a temporary dev environment, grouping all the resources together
means you can deprovision all of the associated resources at once by deleting the resource group. If
you’re provisioning compute resources that will need three different access schemas, it may be best to
group resources based on the access schema, and then assign access at the resource group level.
There aren’t hard rules about how you use resource groups, so consider how to set up your resource
groups to maximize their usefulness for you.
AZURE SUBSCRIPTIONS
In Azure, subscriptions are a unit of management, billing, and scale. Similar to how resource groups
are a way to logically organize resources, subscriptions allow you to logically organize your resource
groups and facilitate billing.
Using Azure requires an Azure subscription. A subscription provides you with authenticated and
authorized access to Azure products and services. It also allows you to provision resources. An Azure
subscription links to an Azure account, which is an identity in Azure Active Directory (Azure AD) or
in a directory that Azure AD trusts.
An account can have multiple subscriptions, but it’s only required to have one. In a multi-subscription
account, you can use the subscriptions to configure different billing models and apply different
access-management policies. You can use Azure subscriptions to define boundaries around Azure
products, services, and resources. There are two types of subscription boundaries that you can use:
• Billing boundary: This subscription type determines how an Azure account is billed for using
Azure. You can create multiple subscriptions for different types of billing requirements. Azure
generates separate billing reports and invoices for each subscription so that you can organize
and manage costs.
• Access control boundary: Azure applies access-management policies at the subscription
level, and you can create separate subscriptions to reflect different organizational structures.
An example is that within a business, you have different departments to which you apply
distinct Azure subscription policies. This billing model allows you to manage and control
access to the resources that users provision with specific subscriptions.
2.1Virtual machines
With Azure Virtual Machines (VMs), you can create and use VMs in the cloud. VMs provide
infrastructure as a service (IaaS) in the form of a virtualized server and can be used in many ways.
Just like a physical computer, you can customize all of the software running on your VM.
VMs are an ideal choice when you need:
You can even create or use an already created image to rapidly provision VMs. You can create and
provision a VM in minutes when you select a preconfigured VM image. An image is a template used
to create a VM and may already include an OS and other software, like development tools or web
hosting environments.
Instead, with virtual machine scale sets, Azure automates most of that work. Scale sets allow you to
centrally manage, configure, and update a large number of VMs in minutes. The number of VM
instances can automatically increase or decrease in response to demand, or you can set it to scale
based on a defined schedule. Virtual machine scale sets also automatically deploy a load balancer to
make sure that your resources are being used efficiently. With virtual machine scale sets, you can
build large-scale services for areas such as compute, big data, and container workloads.
Virtual machine availability sets
Virtual machine availability sets are another tool to help you build a more resilient, highly available
environment. Availability sets are designed to ensure that VMs stagger updates and have varied power
and network connectivity, preventing you from losing all your VMs with a single network or power
failure.
Update domain: The update domain groups VMs that can be rebooted at the same time. This allows
you to apply updates while knowing that only one update domain grouping will be offline at a time.
All of the machines in one update domain will be updated. An update group going through the update
process is given a 30-minute time to recover before maintenance on the next update domain starts.
Fault domain: The fault domain groups your VMs by common power source and network switch. By
default, an availability set will split your VMs across up to three fault domains. This helps protect
against a physical power or networking failure by having VMs in different fault domains (thus being
connected to different power and networking resources).
Best of all, there’s no additional cost for configuring an availability set. You only pay for the VM
instances you create.
During testing and development. VMs provide a quick and easy way to create different OS and
application configurations. Test and development personnel can then easily delete the VMs when they
no longer need them.
When running applications in the cloud. The ability to run certain applications in the public cloud as
opposed to creating a traditional infrastructure to run them can provide substantial economic benefits.
For example, an application might need to handle fluctuations in demand. Shutting down VMs when
you don't need them or quickly starting them up to meet a sudden increase in demand means you pay
only for the resources you use.
When extending your datacenter to the cloud: An organization can extend the capabilities of its
own on-premises network by creating a virtual network in Azure and adding VMs to that virtual
network. Applications like SharePoint can then run on an Azure VM instead of running locally. This
arrangement makes it easier or less expensive to deploy than in an on-premises environment.
During disaster recovery: As with running certain types of applications in the cloud and extending
an on-premises network to the cloud, you can get significant cost savings by using an IaaS-based
approach to disaster recovery. If a primary datacentre fails, you can create VMs running on Azure to
run your critical applications and then shut them down when the primary datacentre becomes
operational again.
Move to the cloud with VMs
VMs are also an excellent choice when you move from a physical server to the cloud (also known as
lift and shift). You can create an image of the physical server and host it within a VM with little or no
changes. Just like a physical on-premises server, you must maintain the VM: you’re responsible for
maintaining the installed OS and software.
VM Resources
When you provision a VM, you’ll also have the chance to pick the resources that are associated with
that VM, including:
Azure Functions is an event-driven, serverless compute option that doesn’t require maintaining virtual
machines or containers. If you build an app using VMs or containers, those resources have to be
“running” in order for your app to function. With Azure Functions, an event wakes the function,
alleviating the need to keep resources provisioned when there are no events.
API apps
Much like hosting a website, you can build REST-based web APIs by using your choice of language
and framework. You get full Swagger support and the ability to package and publish your API in
Azure Marketplace. The produced apps can be consumed from any HTTP- or HTTPS-based client.
WebJobs
You can use the WebJobs feature to run a program (.exe, Java, PHP, Python, or Node.js) or script
(.cmd, .bat, PowerShell, or Bash) in the same context as a web app, API app, or mobile app. They can
be scheduled or run by a trigger. WebJobs are often used to run background tasks as part of your
application logic.
Mobile apps
Use the Mobile Apps feature of App Service to quickly build a back end for iOS and Android apps.
With just a few actions in the Azure portal, you can:
• Store mobile app data in a cloud-based SQL database.
• Authenticate customers against common social providers, such as MSA, Google, Twitter, and
Facebook.
• Send push notifications.
• Execute custom back-end logic in C# or Node.js.
On the mobile app side, there's SDK support for native iOS and Android, Xamarin, and React native
apps.
Internet communications
You can enable incoming connections from the internet by assigning a public IP address to an Azure
resource, or putting the resource behind a public load balancer.
A storage account provides a unique namespace for your Azure Storage data that's accessible from
anywhere in the world over HTTP or HTTPS. Data in this account is secure, highly available, durable,
and massively scalable.
When you create your storage account, you’ll start by picking the storage account type. The type of
account determines the storage services and redundancy options and has an impact on the use cases.
Below is a list of redundancy options that will be covered later in this module:
• Locally redundant storage (LRS)
• Geo-redundant storage (GRS)
• Read-access geo-redundant storage (RA-GRS)
• Zone-redundant storage (ZRS)
• Geo-zone-redundant storage (GZRS)
• Read-access geo-zone-redundant storage (RA-GZRS)
Storage account endpoints
One of the benefits of using an Azure Storage Account is having a unique namespace in Azure for
your data. In order to do this, every storage account in Azure must have a unique-in-Azure account
name. The combination of the account name and the Azure Storage service endpoint forms the
endpoints for your storage account.
• Storage account names must be between 3 and 24 characters in length and may contain
numbers and lowercase letters only.
• Your storage account name must be unique within Azure. No two storage accounts can have
the same name. This supports the ability to have a unique, accessible namespace in Azure.
Zone-redundant storage
For Availability Zone-enabled Regions, zone-redundant storage (ZRS) replicates your Azure Storage
data synchronously across three Azure availability zones in the primary region. ZRS offers durability
for Azure Storage data objects of at least 12 nines (99.9999999999%) over a given year.
With ZRS, your data is still accessible for both read and write operations even if a zone becomes
unavailable. No remounting of Azure file shares from the connected clients is required. If a zone
becomes unavailable, Azure undertakes networking updates, such as DNS repointing. These updates
may affect your application if you access data before the updates have completed.
Microsoft recommends using ZRS in the primary region for scenarios that require high availability.
ZRS is also recommended for restricting replication of data within a country or region to meet data
governance requirements.
Important
Because data is replicated to the secondary region asynchronously, a failure that affects the primary
region may result in data loss if the primary region can't be recovered. The interval between the most
recent writes to the primary region and the last write to the secondary region is known as the recovery
point objective (RPO). The RPO indicates the point in time to which data can be recovered. Azure
Storage typically has an RPO of less than 15 minutes, although there's currently no SLA on how long
it takes to replicate data to the secondary region.
Geo-redundant storage
GRS copies your data synchronously three times within a single physical location in the primary
region using LRS. It then copies your data asynchronously to a single physical location in the
secondary region (the region pair) using LRS. GRS offers durability for Azure Storage data objects of
at least 16 nines (99.99999999999999%) over a given year.
Geo-zone-redundant storage
GZRS combines the high availability provided by redundancy across availability zones with
protection from regional outages provided by geo-replication. Data in a GZRS storage account is
copied across three Azure availability zones in the primary region (similar to ZRS) and is also
replicated to a secondary geographic region, using LRS, for protection from regional disasters.
Microsoft recommends using GZRS for applications requiring maximum consistency, durability, and
availability, excellent performance, and resilience for disaster recovery.
Blob storage
Azure Blob Storage is an object storage solution for the cloud. It can store massive amounts of data,
such as text or binary data. Azure Blob Storage is unstructured, meaning that there are no restrictions
on the kinds of data it can hold. Blob Storage can manage thousands of simultaneous uploads,
massive amounts of video data, constantly growing log files, and can be reached from anywhere with
an internet connection.
Blobs aren't limited to common file formats. A blob could contain gigabytes of binary data streamed
from a scientific instrument, an encrypted message for another application, or data in a custom format
for an app you're developing. One advantage of blob storage over disk storage is that it doesn't require
developers to think about or manage disks. Data is uploaded as blobs, and Azure takes care of the
physical storage needs.
Blob storage is ideal for:
• Serving images or documents directly to a browser.
• Storing files for distributed access.
• Streaming video and audio.
• Storing data for backup and restore, disaster recovery, and archiving.
• Storing data for analysis by an on-premises or Azure-hosted service.
Azure Files
Azure Files offers fully managed file shares in the cloud that are accessible via the industry standard
Server Message Block (SMB) or Network File System (NFS) protocols. Azure Files file shares can be
mounted concurrently by cloud or on-premises deployments. SMB Azure file shares are accessible
from Windows, Linux, and macOS clients. NFS Azure Files shares are accessible from Linux or
macOS clients. Additionally, SMB Azure file shares can be cached on Windows Servers with Azure
File Sync for fast access near where the data is being used.
Queue storage
Azure Queue Storage is a service for storing large numbers of messages. Once stored, you can access
the messages from anywhere in the world via authenticated calls using HTTP or HTTPS. A queue can
contain as many messages as your storage account has room for (potentially millions). Each
individual message can be up to 64 KB in size. Queues are commonly used to create a backlog of
work to process asynchronously.
Queue storage can be combined with compute functions like Azure Functions to take an action when a
message is received. For example, you want to perform an action after a customer uploads a form to
your website. You could have the submit button on the website trigger a message to the Queue
storage. Then, you could use Azure Functions to trigger an action once the message was received.
Disk storage
Disk storage, or Azure managed disks, are block-level storage volumes managed by Azure for use
with Azure VMs. Conceptually, they’re the same as a physical disk, but they’re virtualized – offering
greater resiliency and availability than a physical disk. With managed disks, all you have to do is
provision the disk, and Azure will take care of the rest.
Integrated tools
In addition to working with tools from ISVs, the Azure Migrate hub also includes the following tools
to help with migration:
• Azure Migrate: Discovery and assessment. Discover and assess on-premises servers
running on VMware, Hyper-V, and physical servers in preparation for migration to Azure.
• Azure Migrate: Server Migration. Migrate VMware VMs, Hyper-V VMs, physical servers,
other virtualized servers, and public cloud VMs to Azure.
• Data Migration Assistant. Data Migration Assistant is a stand-alone tool to assess SQL
Servers. It helps pinpoint potential problems blocking migration. It identifies unsupported
features, new features that can benefit you after migration, and the right path for database
migration.
• Azure Database Migration Service. Migrate on-premises databases to Azure VMs running
SQL Server, Azure SQL Database, or SQL Managed Instances.
• Web app migration assistant. Azure App Service Migration Assistant is a standalone tool to
assess on-premises websites for migration to Azure App Service. Use Migration Assistant to
migrate .NET and PHP web apps to Azure.
• Azure Data Box. Use Azure Data Box products to move large amounts of offline data to
Azure.
Use cases
Data Box is ideally suited to transfer data sizes larger than 40 TBs in scenarios with no to limited
network connectivity. The data movement can be one-time, periodic, or an initial bulk data transfer
followed by periodic transfers.
Here are the various scenarios where Data Box can be used to import data to Azure.
• Onetime migration - when a large amount of on-premises data is moved to Azure.
• Moving a media library from offline tapes into Azure to create an online media library.
• Migrating your VM farm, SQL server, and applications to Azure.
• Moving historical data to Azure for in-depth analysis and reporting using HDInsight.
• Initial bulk transfer - when an initial bulk transfer is done using Data Box (seed) followed by
incremental transfers over the network.
• Periodic uploads - when large amount of data is generated periodically and needs to be moved
to Azure.
Here are the various scenarios where Data Box can be used to export data from Azure.
• Disaster recovery - when a copy of the data from Azure is restored to an on-premises network.
In a typical disaster recovery scenario, a large amount of Azure data is exported to a Data
Box. Microsoft then ships this Data Box, and the data is restored on your premises in a short
time.
• Security requirements - when you need to be able to export data out of Azure due to
government or security requirements.
• Migrate back to on-premises or to another cloud service provider - when you want to move all
the data back to on-premises, or to another cloud service provider, export data via Data Box to
migrate the workloads.
Once the data from your import order is uploaded to Azure, the disks on the device are wiped clean in
accordance with NIST 800-88r1 standards. For an export order, the disks are erased once the device
reaches the Azure datacenter.
4.Azure Functions overview
Azure Functions is a serverless solution that allows you to write less code, maintain less
infrastructure, and save on costs. Instead of worrying about deploying and maintaining
servers, the cloud infrastructure provides all the up-to-date resources needed to keep your
applications running.
You focus on the code that matters most to you, in the most productive language for you, and
Azure Functions handles the rest. In addition, azure functions can be written in multiple
languages such as C#, Java, JavaScript, TypeScript, and Python.
Azure functions are scalable. When demand for execution increases, more resources are
allocated automatically to the service, and when requests fall, all extra resources and
application instances drop off automatically.
Let's say you have to send a birthday email to your customers. You're an ASP.NET web
developer. Instead of building a website in ASP.NET and employing and hosting it on IIS
just for one feature, you can write an azure function, put your email login in the function, and
deploy it on the Azure cloud. The azure functions will directly connect to your data source,
get your customers' emails, and send them an email on a scheduled date and time.
Azure functions are best suited for smaller apps with events that can work independently of
other websites. For example, some azure functions are sending emails, starting back up, order
processing, task scheduling such as database cleanup, sending notifications, messages, and
IoT data processing.
Here are some of the reasons why you should use azure functions.
Azure Functions is a lightweight serverless service. It has its own specific uses, and you can’t
just replace an entire website simply by using it.
Importantly, not all applications can or should use Azure Functions as it’s a service that uses
triggers. Once an event has been triggered, the task is executed in the background.
It’s worth keeping in mind that Azure Functions is not a replacement for Web APIs. Web
applications tend to use Web APIs as the middleman to bunch together data and business
logic tasks, while Azure Functions receives input, runs its logic and provides output.
Nevertheless, it could be a great extension for Web APIs for specific use cases.
Importantly, Azure Functions is not designed to carry out multiple tasks. The service was
created to perform one or very few tasks as fast as possible.
Azure SQL is a family of managed, secure, and intelligent products that use the SQL Server
database engine in the Azure cloud.
You need a plan for how to move some workloads to the cloud, and you need to understand
how to set up your organization for success. You also need to understand how the role of a
database administrator (DBA) or data professional stays the same, and what changes you
have to make.
This module starts with a brief history of why and how Microsoft built Azure SQL. You'll
then learn about the various deployment options and service tiers, including what to use for
your organization and when. These options include Azure SQL Database, Azure SQL
Managed Instance, and SQL Server in an Azure virtual machine. Understanding what
platform as a service (PaaS) encompasses and how it compares to a traditional SQL server
environment can help you understand what you do and don't get when you move to the cloud.
Software and services for relational databases have been a large part of the Microsoft product
offering over the years. Before you learn about Azure SQL and where it's going, let's briefly
consider where it started.
Azure SQL is a cloud database offering that Microsoft provides as part of the Azure cloud
computing platform. Unlike other editions of SQL Server, you do not need to provision
hardware for, install or patch Azure SQL; Microsoft maintains the platform for you. You also
do not need to architect a database installation for scalability, high availability, or disaster
recovery as these features are provided automatically by the service. Any application that
uses Azure SQL must have Internet access in order to connect to the database.
This explanation remains valid, but the capabilities around security, performance,
availability, and scale have been enhanced greatly. Azure SQL has evolved over the years to
include Azure virtual machines, managed instances, and several options for databases. There
are now multiple deployment options that have the flexibility to scale to your needs. There
have been more than seven million deployments of some form of Azure SQL. The
architecture for Azure SQL has also evolved to meet the growing demands of applications.
For example, the architecture introduced in 2014 set the stage for new possibilities like elastic
database pools, vCore choices, business-critical deployments, hyperscale, and serverless
architectures.
Since 2008, SQL Server and Azure SQL have both evolved to become more available,
scalable, and performant to meet the demands of any application. The database services
offered have expanded from SQL Server to include open-source databases like Azure
Database for PostgreSQL and Azure Database for MariaDB.
Within the umbrella of the Azure SQL platform, there are many deployment options and
choices that you can make. These options give you the flexibility to get and pay for exactly
what you need.
This unit covers some of the considerations you need to make when you choose various
Azure SQL deployment options. You'll also learn about technical specifications for each of
these deployment options. The deployment options discussed here include SQL Server on
virtual machines, Azure SQL Managed Instance, Azure SQL Database, Azure SQL Managed
Instance pools, and Azure SQL Database elastic database pools.
SQL Server on a virtual machine (VM) is a version of SQL Server that runs in an Azure VM.
It's just SQL Server, so all your SQL Server skills should directly transfer, though Azure can
help automate backups and security patches. SQL Server on an Azure VM is referred to
as infrastructure as a service (IaaS). You're responsible for updating and patching the OS and
SQL Server, apart from critical SQL Server security patches, but you have access to the full
capabilities of SQL Server.
Here are some considerations for optimally deploying and managing SQL Server on VMs:
• Deploy specific SQL Server and operating-system versions from preinstalled Azure
gallery images. If you self-install SQL Server on an Azure VM, you can take
advantage of the SQL Server IaaS Agent Extension for licensing flexibility and to
enable automatic backups and updates.
SQL Server on a VM is considered IaaS. The other deployment options in the Azure SQL
platform, Azure SQL Managed Instance and Azure SQL Database, are platform as a service
(PaaS) deployments. These PaaS Azure SQL deployment options contain a fully managed
database engine that automates most of the database management functions, like upgrading,
patching, backups, and monitoring. Here are some key features of SQL Managed Instance
and SQL Database:
• High availability guarantees your databases are up and running 99.99% of the time.
There's no need to worry about maintenance or downtimes.
• Automated backups are created and use Azure read-access geo-redundant storage
(RA-GRS) to provide geo-redundancy.
• Long-term backup retention lets you store specific full databases for up to 10 years.
• Scalability lets you easily add more resources (CPU, memory, storage) without long
provisioning.
• Network security features protect your data over the network. These features include
firewalls to restrict connectivity, Azure Private Link to ensure your data isn't exposed
to the internet, and integration with virtual networks for connectivity to on-premises
environments.
• Advanced security detects threats and vulnerabilities in your databases and allows you
to secure your data.
Another significant difference between IaaS and PaaS is versionless SQL. Unlike IaaS, which
is tied to a specific SQL Server version, SQL Database and SQL Managed Instance are
versionless. The main "branch" of the SQL Server engine codebase powers SQL Server 2019,
SQL Database, and SQL Managed Instance.
Although SQL Server versions come out every few years, PaaS services allow Microsoft to
continually update SQL databases and instances. Microsoft rolls out fixes and features as
appropriate. As a consumer of the service, you don't have control over these updates, and the
result of @@VERSION doesn't line up to a specific SQL Server version. But versionless
SQL allows for worry-free patching for both the underlying OS and SQL Server and for
Microsoft to give you the latest bits.
As new features are developed, some customers are granted access to specific features before
they're publicly available. These new features then become available in public previews.
Public previews allow everyone to access new features, but there's typically limited support
and often discount pricing.
SQL Managed Instance
SQL Managed Instance is a PaaS deployment option of Azure SQL. It gives you an instance
of SQL Server, but removes much of the overhead of managing a VM. Most of the features
available in SQL Server are available in SQL Managed Instance. This option is ideal for
customers who want to use instance-scoped features and want to move to Azure without
rearchitecting their applications. Instance-scoped features are tied to an instance of SQL
Server, as opposed to features that are tied to a database in an instance of SQL Server.
Instance-scoped features of SQL Managed Instance include SQL Server Agent, Service
Broker, common language runtime (CLR), Database Mail, linked servers, distributed
transactions (preview), and Machine Learning Services. SQL Managed Instance allows you
to access instance-scoped features, but you don't have to worry about, nor do you have access
to, the OS or the infrastructure underneath.
• Use the right storage configuration and take advantage of Azure Blob storage read
caching.
• Integrate your VMs into on-premises networks by using Azure virtual networks.
• Always On Failover Cluster Instances is supported with Azure premium file share.
Companies around the world use SQL Server on VMs. One example is Allscripts. Allscripts
is a leading manufacturer of healthcare software, serving physician practices, hospitals, health
plans, and the pharmaceutical industry. To transform its applications frequently and to host
them securely and reliably, Allscripts wanted to move to Azure quickly. In just three weeks,
the company used Azure Site Recovery to migrate dozens of acquired applications running
on approximately 1,000 VMs to Azure.
SQL Database
SQL Database is a PaaS deployment option of Azure SQL that abstracts both the OS and the
SQL Server instance away from users. This deployment option allows you to just get a
database and start developing applications. SQL Database is also the only deployment option
that supports scenarios that require unlimited database storage (hyperscale) and autoscaling
for unpredictable workloads (serverless). SQL Database has the industry's highest availability
SLA. It provides other intelligent capabilities related to monitoring and performance, partly
because Microsoft manages instances
AccuWeather provides a great example of using SQL Database. AccuWeather has been
analyzing and predicting the weather for more than 55 years. The company wanted to access
Azure for its big data, machine learning, and AI capabilities. AccuWeather wants to focus on
building new models and applications, not on managing databases. The company chose SQL
Database to use with other services, like Azure Data Factory and Azure Machine Learning, to
quickly and easily deploy new internal applications to make sales and customer predictions.
You've now learned about the three main deployment options within Azure SQL: virtual
machines, managed instances, and SQL Database. For SQL Database and SQL Managed
Instance, there are other options if you have multiple instances or databases. These options
are referred to as elastic database pools. Elastic database pools allow you to share resources
among multiple instances and databases and optimize your costs.
SQL Database elastic pools allow you to host many databases within a single set of
provisioned SQL Database resources. This option is ideal for software as a service (SaaS)
application or provider because you can manage and monitor performance in a simplified
way for many databases.
SQL Managed Instance pools allow you to host multiple managed instances and share
resources. You can pre-provision compute resources. Doing so can reduce overall
deployment time to make migrations easier. You can also host smaller managed instances in
an instance pool than in a single managed instance. This offer is currently in public preview.
Paychex is a good example of a company that uses SQL Database elastic database pools.
Paychex is a Human Capital Management firm that serves more than 650,000 businesses
across the US and Europe. Paychex needed a way to separately manage the time and pay
management for each of its customers and cut costs. The company chose SQL Database
elastic database pools, which allowed it to simplify management and enable resource sharing
between separate databases to lower costs.