Skip to content

Commit 515a6b3

Browse files
author
gitName
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into sync
2 parents ffbe401 + cbe7426 commit 515a6b3

File tree

115 files changed

+431
-587
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+431
-587
lines changed

articles/azure-functions/durable/durable-functions-external-events.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ import azure.functions as func
6363
import azure.durable_functions as df
6464

6565
def orchestrator_function(context: df.DurableOrchestrationContext):
66-
approved = context.wait_for_external_event('Approval')
66+
approved = yield context.wait_for_external_event('Approval')
6767
if approved:
6868
# approval granted - do the approved action
6969
else:
@@ -169,7 +169,7 @@ def orchestrator_function(context: df.DurableOrchestrationContext):
169169
event2 = context.wait_for_external_event('Event2')
170170
event3 = context.wait_for_external_event('Event3')
171171

172-
winner = context.task_any([event1, event2, event3])
172+
winner = yield context.task_any([event1, event2, event3])
173173
if winner == event1:
174174
# ...
175175
elif winner == event2:
@@ -426,4 +426,4 @@ In this case, the instance ID is hardcoded as *MyInstanceId*.
426426
> [Learn how to implement error handling](durable-functions-error-handling.md)
427427
428428
> [!div class="nextstepaction"]
429-
> [Run a sample that waits for human interaction](durable-functions-phone-verification.md)
429+
> [Run a sample that waits for human interaction](durable-functions-phone-verification.md)
2.39 KB
Loading
56 Bytes
Loading
-15.2 KB
Loading
-87 Bytes
Loading
-81.3 KB
Loading
1.99 KB
Loading

articles/azure-maps/tutorial-ev-routing.md

Lines changed: 37 additions & 134 deletions
Large diffs are not rendered by default.

articles/azure-netapp-files/access-smb-volume-from-windows-client.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.service: azure-netapp-files
55
ms.topic: how-to
66
author: b-ahibbard
77
ms.author: anfdocs
8-
ms.date: 08/20/2024
8+
ms.date: 10/18/2024
99
---
1010
# Access SMB volumes from Microsoft Entra joined Windows virtual machines
1111

@@ -91,7 +91,7 @@ The configuration process takes you through five process:
9191
* `$servicePrincipalName`: The SPN details from mounting the Azure NetApp Files volume. Use the CIFS/FQDN format. For example: `CIFS/NETBIOS-1234.CONTOSO.COM`
9292
* `$targetApplicationID`: Application (client) ID of the Microsoft Entra application.
9393
* `$domainCred`: use `Get-Credential` (should be an AD DS domain administrator)
94-
* `$cloudCred`: use `Get-Credential` (should be a Microsoft Entra Global Administrator)
94+
* `$cloudCred`: use `Get-Credential` (likely a [Hybrid Identity Administrator](/entra/identity/role-based-access-control/permissions-reference#hybrid-identity-administrator))
9595
9696
```powershell
9797
$servicePrincipalName = CIFS/NETBIOS-1234.CONTOSO.COM

articles/azure-netapp-files/solutions-benefits-azure-netapp-files-electronic-design-automation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.service: azure-netapp-files
1212
ms.workload: storage
1313
ms.tgt_pltfrm: na
1414
ms.topic: conceptual
15-
ms.date: 03/19/2024
15+
ms.date: 10/18/2024
1616
ms.author: anfdocs
1717
---
1818
# Benefits of using Azure NetApp Files for Electronic Design Automation (EDA)
@@ -31,7 +31,7 @@ The Azure NetApp Files large volumes feature is ideal for the storage needs of t
3131

3232
* **At 826,000 operations per second:** the performance edge of a single large volume - the application layer peaked at 7ms of latency in our tests, which shows that more operations are possible in a single large volume at a slight cost of latency.
3333

34-
Tests conducted internally using an EDA benchmark in 2020 found that with a single regular Azure NetApp Files volume, workload as high as 40,000 IOPS could be achieved at the 2ms mark, and 50,000 at the edge.
34+
Tests conducted using an EDA benchmark found that with a single regular Azure NetApp Files volume, workload as high as 40,000 IOPS could be achieved at the 2ms mark, and 50,000 at the edge. See the table and chart below for regular and large volume side-by-side overview.
3535

3636

3737
| Scenario | I/O Rate at 2ms latency | I/O Rate at performance edge (~7 ms) | MiB/s at 2ms latency | MiB/s performance edge (~7 ms) |
@@ -43,7 +43,7 @@ The following chart illustrates the test results.
4343

4444
:::image type="content" source="./media/solutions-benefits-azure-netapp-files-electronic-design-automation/latency-throughput-graph.png" alt-text="Chart comparing latency and throughput between large and regular volumes." lightbox="./media/solutions-benefits-azure-netapp-files-electronic-design-automation/latency-throughput-graph.png":::
4545

46-
The 2020 internal testing also explored single endpoint limits, the limits were reached with six volumes. Large Volume outperforms the scenario with six regular volumes by 260%.
46+
The regular volume testing also explored single endpoint limits, the limits were reached with six volumes. Large Volume outperforms the scenario with six regular volumes by 260%. The following table illustrates these results.
4747

4848
| Scenario | I/O Rate at 2ms latency | I/O Rate at performance edge (~7ms) | MiB/s at 2ms latency | MiB/s performance edge (~7ms) |
4949
| - | - | - | - | - |

0 commit comments

Comments
 (0)