Skip to content

Commit dc83168

Browse files
authored
changed files by pdets auto publish service, publishid[d20682dd-a93c-45c2-8844-5377c0b24cfa] and do [publish].
1 parent 811d53a commit dc83168

23 files changed

+108
-53
lines changed

learn-pr/wwl-azure/design-data-storage-solution-for-non-relational-data/1-introduction.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22
uid: learn.wwl.design-data-storage-solution-for-non-relational-data.introduction
33
title: Introduction
44
metadata:
5+
adobe-target: true
6+
prefetch-feature-rollout: true
57
title: Introduction
68
description: "Introduction"
7-
ms.date: 12/10/2024
9+
ms.date: 05/12/2025
810
author: wwlpublish
911
ms.author: cynthist
1012
ms.topic: unit

learn-pr/wwl-azure/design-data-storage-solution-for-non-relational-data/10-summary-resources.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22
uid: learn.wwl.design-data-storage-solution-for-non-relational-data.summary-resources
33
title: Summary and resources
44
metadata:
5+
adobe-target: true
6+
prefetch-feature-rollout: true
57
title: Summary and resources
68
description: "Summary and resources"
7-
ms.date: 12/10/2024
9+
ms.date: 05/12/2025
810
author: wwlpublish
911
ms.author: cynthist
1012
ms.topic: unit

learn-pr/wwl-azure/design-data-storage-solution-for-non-relational-data/2-design-for-data-storage.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
22
uid: learn.wwl.design-data-storage-solution-for-non-relational-data.design-for
33
title: Design for data storage
44
metadata:
5+
adobe-target: true
6+
prefetch-feature-rollout: true
57
title: Design for data storage
68
description: "Design for data storage"
7-
ms.date: 12/10/2024
9+
ms.date: 05/12/2025
810
author: wwlpublish
911
ms.author: cynthist
1012
ms.topic: unit
1113
ms.custom:
1214
- N/A
13-
durationInMinutes: 3
15+
durationInMinutes: 4
1416
content: |
1517
[!include[](includes/2-design-for-data-storage.md)]

learn-pr/wwl-azure/design-data-storage-solution-for-non-relational-data/3-design-for-azure-storage-accounts.yml

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,30 @@
22
uid: learn.wwl.design-data-storage-solution-for-non-relational-data.design-for-azure-storage-accounts
33
title: Design for Azure storage accounts
44
metadata:
5+
adobe-target: true
6+
prefetch-feature-rollout: true
57
title: Design for Azure storage accounts
68
description: "Design for Azure storage accounts"
7-
ms.date: 12/10/2024
9+
ms.date: 05/12/2025
810
author: wwlpublish
911
ms.author: cynthist
1012
ms.topic: unit
1113
ms.custom:
1214
- N/A
13-
durationInMinutes: 5
15+
durationInMinutes: 6
1416
content: |
15-
[!include[](includes/3-design-for-azure-storage-accounts.md)]
17+
[!include[](includes/3-design-for-azure-storage-accounts.md)]
18+
quiz:
19+
title: ""
20+
questions:
21+
- content: "Which Azure storage account type is recommended for applications with high transaction rates and requires consistently low storage latency?"
22+
choices:
23+
- content: "Standard general-purpose v2"
24+
isCorrect: false
25+
explanation: "Incorrect. The Standard general-purpose v2 storage account is suitable for most scenarios but does not specifically cater to applications with high transaction rates and low storage latency."
26+
- content: "Premium block blobs"
27+
isCorrect: true
28+
explanation: "Correct. Premium block blobs storage account is recommended for applications with high transaction rates and requires consistently low storage latency."
29+
- content: "Premium file shares"
30+
isCorrect: false
31+
explanation: "Incorrect. Premium file shares storage account doesn't specifically address the need for high transaction rates and low storage latency."

learn-pr/wwl-azure/design-data-storage-solution-for-non-relational-data/4-design-for-data-redundancy.yml

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,30 @@
22
uid: learn.wwl.design-data-storage-solution-for-non-relational-data.design-for-data-redundancy
33
title: Design for data redundancy
44
metadata:
5+
adobe-target: true
6+
prefetch-feature-rollout: true
57
title: Design for data redundancy
68
description: "Design for data redundancy"
7-
ms.date: 12/10/2024
9+
ms.date: 05/12/2025
810
author: wwlpublish
911
ms.author: cynthist
1012
ms.topic: unit
1113
ms.custom:
1214
- N/A
13-
durationInMinutes: 5
15+
durationInMinutes: 8
1416
content: |
15-
[!include[](includes/4-design-for-data-redundancy.md)]
17+
[!include[](includes/4-design-for-data-redundancy.md)]
18+
quiz:
19+
title: ""
20+
questions:
21+
- content: "Which Azure storage redundancy model replicates data synchronously across three Azure availability zones within a region?"
22+
choices:
23+
- content: "Locally Redundant Storage (LRS)"
24+
isCorrect: false
25+
explanation: "Incorrect. LRS replicates data three times within a single data center in a region. It provides high durability and availability within the same data center but doesn't protect against data center failures or regional outages."
26+
- content: "Zone-Redundant Storage (ZRS)"
27+
isCorrect: true
28+
explanation: "Correct. ZRS replicates data synchronously across three Azure availability zones in a region. This model provides higher durability and availability by protecting against data center failures within a region."
29+
- content: "Geo-Redundant Storage (GRS)"
30+
isCorrect: false
31+
explanation: "Incorrect. GRS replicates data to a secondary region, hundreds of miles away from the primary location. This model provides the highest level of durability and availability by protecting against regional outages."

learn-pr/wwl-azure/design-data-storage-solution-for-non-relational-data/5-design-for-azure-blob-storage.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
22
uid: learn.wwl.design-data-storage-solution-for-non-relational-data.design-for-azure-blob-storage
33
title: Design for Azure Blob Storage
44
metadata:
5+
adobe-target: true
6+
prefetch-feature-rollout: true
57
title: Design for Azure Blob Storage
68
description: "Design for Azure Blob Storage"
7-
ms.date: 12/10/2024
9+
ms.date: 05/12/2025
810
author: wwlpublish
911
ms.author: cynthist
1012
ms.topic: unit
1113
ms.custom:
1214
- N/A
13-
durationInMinutes: 7
15+
durationInMinutes: 9
1416
content: |
1517
[!include[](includes/5-design-for-azure-blob-storage.md)]

learn-pr/wwl-azure/design-data-storage-solution-for-non-relational-data/6-design-for-azure-files.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
22
uid: learn.wwl.design-data-storage-solution-for-non-relational-data.design-for-azure-files
33
title: Design for Azure Files
44
metadata:
5+
adobe-target: true
6+
prefetch-feature-rollout: true
57
title: Design for Azure Files
68
description: "Design for Azure Files"
7-
ms.date: 12/10/2024
9+
ms.date: 05/12/2025
810
author: wwlpublish
911
ms.author: cynthist
1012
ms.topic: unit
1113
ms.custom:
1214
- N/A
13-
durationInMinutes: 7
15+
durationInMinutes: 9
1416
content: |
1517
[!include[](includes/6-design-for-azure-files.md)]

learn-pr/wwl-azure/design-data-storage-solution-for-non-relational-data/7-design-for-azure-disk-solutions.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22
uid: learn.wwl.design-data-storage-solution-for-non-relational-data.design-for-azure-disk-solutions
33
title: Design for Azure managed disks
44
metadata:
5+
adobe-target: true
6+
prefetch-feature-rollout: true
57
title: Design for Azure managed disks
68
description: "Design for Azure managed disks"
7-
ms.date: 12/10/2024
9+
ms.date: 05/12/2025
810
author: wwlpublish
911
ms.author: cynthist
1012
ms.topic: unit

learn-pr/wwl-azure/design-data-storage-solution-for-non-relational-data/8-design-for-storage-security.yml

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,30 @@
22
uid: learn.wwl.design-data-storage-solution-for-non-relational-data.design-for-storage-security
33
title: Design for storage security
44
metadata:
5+
adobe-target: true
6+
prefetch-feature-rollout: true
57
title: Design for storage security
68
description: "Design for storage security"
7-
ms.date: 12/10/2024
9+
ms.date: 05/12/2025
810
author: wwlpublish
911
ms.author: cynthist
1012
ms.topic: unit
1113
ms.custom:
1214
- N/A
13-
durationInMinutes: 6
15+
durationInMinutes: 7
1416
content: |
15-
[!include[](includes/8-design-for-storage-security.md)]
17+
[!include[](includes/8-design-for-storage-security.md)]
18+
quiz:
19+
title: ""
20+
questions:
21+
- content: "Which Azure storage security option allows you to provide clients files and blobs for a specific period of time?"
22+
choices:
23+
- content: "Firewall policies and rules"
24+
isCorrect: false
25+
explanation: "Incorrect. Firewall policies limit requests to IP addresses or subnets in a virtual network."
26+
- content: "Private endpoints"
27+
isCorrect: false
28+
explanation: "Incorrect. Private endpoints create a special network interface for an Azure service in your virtual network."
29+
- content: "Shared access signatures"
30+
isCorrect: true
31+
explanation: "Correct. SAS provides secure delegated access to resources in your storage account."

learn-pr/wwl-azure/design-data-storage-solution-for-non-relational-data/9-knowledge-check.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22
uid: learn.wwl.design-data-storage-solution-for-non-relational-data.knowledge-check
33
title: Module assessment
44
metadata:
5+
adobe-target: true
6+
prefetch-feature-rollout: true
57
title: Module assessment
68
description: "Knowledge check"
7-
ms.date: 12/10/2024
9+
ms.date: 05/12/2025
810
author: wwlpublish
911
ms.author: cynthist
1012
ms.topic: unit

0 commit comments

Comments
 (0)