Skip to content

Commit e82efbf

Browse files
committed
Updates
1 parent 67e0b73 commit e82efbf

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

learn-pr/wwl-data-ai/deploy-paas-solutions-with-azure-sql/includes/3-explore-single.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Let's look at several methods for deploying a single Azure SQL Database.
44

55
Creating an SQL database through the Azure portal is simple. First, navigate to the Azure portal and select "SQL Databases" from the left-hand menu. In the slide-out panel that appears, select "Create."
66

7-
:::image type="content" source="../media/module-22-plan-implement-final-13.png" alt-text="Screenshot showing the Azure portal Azure SQL Database Deployment page":::
7+
:::image type="content" source="../media/module-22-plan-implement-final-13.png" alt-text="Screenshot showing the Azure portal Azure SQL Database Deployment page.":::
88

99
In the pane in the image below, you’ll notice that the subscription should already be provided for you. You'll need to supply the following information:
1010

@@ -14,11 +14,11 @@ In the pane in the image below, you’ll notice that the subscription should alr
1414
- **Want to use SQL elastic pool?** – Decide whether to use an elastic pool.
1515
- **Compute + storage** – Determine the appropriate compute resources needed. By default, it's set to Gen5, 2vCore, with 32 GB of storage. Select **Configure database** to view and choose alternate configuration options.
1616

17-
:::image type="content" source="../media/module-22-plan-implement-final-14.png" alt-text="Screenshot showing the Create SQL Database page in Azure portal":::
17+
:::image type="content" source="../media/module-22-plan-implement-final-14.png" alt-text="Screenshot showing the Create SQL Database page in Azure portal." lightbox="../media/module-22-plan-implement-final-14.png":::
1818

1919
Here, you'll notice that the service tier is General Purpose and the compute tier is Serverless, as discussed previously. Serverless is billed per second based on the number of vCores in use. The alternative option is Provisioned, where compute resources are preallocated and billed per hour based on the number of configured vCores.
2020

21-
:::image type="content" source="../media/module-22-plan-implement-final-15.png" alt-text="Service Tier selection in Azure portal":::
21+
:::image type="content" source="../media/module-22-plan-implement-final-15.png" alt-text="Service Tier selection in Azure portal." lightbox="../media/module-22-plan-implement-final-15.png":::
2222

2323
## Deploying an Azure SQL Database via PowerShell/CLI
2424

learn-pr/wwl-data-ai/deploy-paas-solutions-with-azure-sql/includes/4-deploy-elastic-pool.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,25 @@ Elastic pools are a deployment option in which you purchase Azure compute resour
44

55
Using the Azure portal, search for *“SQL elastic pools”*. Then select **Create** to open the **Create SQL Elastic pool** page.
66

7-
:::image type="content" source="../media/module-22-plan-implement-final-17.png" alt-text="Screenshot showing the elastic pool page in Azure portal":::
7+
:::image type="content" source="../media/module-22-plan-implement-final-17.png" alt-text="Screenshot showing the elastic pool page in Azure portal." lightbox="../media/module-22-plan-implement-final-17.png":::
88

99
## Adding a database to an existing pool
1010

1111
1. Using the Azure portal, locate the pool to which you're adding a database.
1212

13-
:::image type="content" source="../media/module-22-plan-implement-final-18.png" alt-text="Screenshot showing how to add a database to an Elastic Pool in Azure portal":::
13+
:::image type="content" source="../media/module-22-plan-implement-final-18.png" alt-text="Screenshot showing how to add a database to an Elastic Pool in Azure portal." lightbox="../media/module-22-plan-implement-final-18.png":::
1414

1515
1. Select **+ Add databases** to add your database to the pool, then select **Apply**.
1616

17-
:::image type="content" source="../media/module-22-plan-implement-final-20.png" alt-text="Screenshot showing how to select a database to add to an elastic pool":::
17+
:::image type="content" source="../media/module-22-plan-implement-final-20.png" alt-text="Screenshot showing how to select a database to add to an elastic pool." lightbox="../media/module-22-plan-implement-final-20.png":::
1818

1919
Your database selection is then added to the **Ready to be added to this pool section**. Select **Save**.
2020

2121
## Managing pool resources
2222

2323
The Azure portal provides comprehensive insights into the state and health of your elastic pool. You can monitor resource utilization and identify which database is consuming the most resources. This information is valuable for identifying performance issues or determining if a database isn't well-suited for the pool, especially if one database is using most of the resources.
2424

25-
:::image type="content" source="../media/module-22-plan-implement-final-21.png" alt-text="Screenshot showing the resource utilization page of an elastic pool":::
25+
:::image type="content" source="../media/module-22-plan-implement-final-21.png" alt-text="Screenshot showing the resource utilization page of an elastic pool." lightbox="../media/module-22-plan-implement-final-21.png":::
2626

2727
To adjust the resources allocated to your elastic pool, use the **Configure** option in the **Settings** section of the elastic pool management side menu. You can perform many changes after the creation of an elastic pool.
2828

@@ -35,6 +35,6 @@ Some changes, such as the minimum and maximum DTUs or vCores per database are pe
3535

3636
One of the most useful features is the ability to monitor database resource utilization. This feature provides an easy way to assess the performance of databases within the pool.
3737

38-
:::image type="content" source="../media/module-22-plan-implement-final-23.png" alt-text="Utilization per database in an Elastic Pool from the Azure portal":::
38+
:::image type="content" source="../media/module-22-plan-implement-final-23.png" alt-text="Utilization per database in an Elastic Pool from the Azure portal." lightbox="../media/module-22-plan-implement-final-23.png":::
3939

4040
An elastic pool is a good fit for multitenant databases where each tenant has its own copy of the database. Balance the workload across databases so as not to allow one database to monopolize all the pool’s resources.

learn-pr/wwl-data-ai/deploy-paas-solutions-with-azure-sql/includes/5-understand-sql-database-hyperscale.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ Hyperscale provides rapid scalability based on your workload demand.
1919

2020
Provisioning more compute replicas is a quick, online operation. To connect to these read-only replicas, set the *ApplicationIntent* argument in your connection string to **ReadOnly**. Connections with the **ReadOnly** application intent are automatically routed to one of the read-only compute replicas.
2121

22-
:::image type="content" source="../media/module-22-plan-implement-final-36.png" alt-text="Diagram showing the hyperscale architecture for Azure SQL Database":::
22+
:::image type="content" source="../media/module-22-plan-implement-final-36.png" alt-text="Diagram showing the hyperscale architecture for Azure SQL Database.":::
2323

2424
## Security considerations
2525

2626
Security for the Hyperscale service tier offers the same robust capabilities as other Azure SQL Database tiers. It employs a layered defense-in-depth approach, providing comprehensive protection from the outermost layers inward.
2727

28-
:::image type="content" source="../media/module-22-plan-implement-final-37.png" alt-text="Hyperscale security":::
28+
:::image type="content" source="../media/module-22-plan-implement-final-37.png" alt-text="Illustration showing the Hyperscale model.":::
2929

3030
- **Network Security** is the first layer of defense, utilizing IP firewall rules to control access based on the originating IP address. Additionally, Virtual Network firewall rules enable communication from selected subnets within a virtual network.
3131

@@ -63,11 +63,11 @@ To deploy an Azure SQL Database with the Hyperscale tier, follow the same proces
6363

6464
1. Under **Compute + storage**, select the **Configure database** link.
6565

66-
:::image type="content" source="../media/module-22-plan-implement-final-14.png" alt-text="Screenshot showing how to configure an Azure SQL Database with the hyperscale tier":::
66+
:::image type="content" source="../media/module-22-plan-implement-final-14.png" alt-text="Screenshot showing how to configure an Azure SQL Database with the hyperscale tier." lightbox="../media/module-22-plan-implement-final-14.png":::
6767

6868
1. For **Service tier**, select **Hyperscale**.
6969

70-
:::image type="content" source="../media/module-22-plan-implement-final-40_1.png" alt-text="Selecting Hyperscale service tier":::
70+
:::image type="content" source="../media/module-22-plan-implement-final-40_1.png" alt-text="Screenshot showing how to select the Hyperscale service tier." lightbox="../media/module-22-plan-implement-final-40_1.png":::
7171

7272
1. Review the hardware configurations available and select the most appropriate configuration for your database.
7373

579 Bytes
Loading

0 commit comments

Comments
 (0)