Skip to content

Commit 279dbd5

Browse files
committed
adding cross link to bulk tutorial
1 parent 81cb887 commit 279dbd5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/cosmos-db/sql/troubleshoot-dot-net-sdk-slow-request.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
title: Troubleshoot slow requests in Azure Cosmos DB .NET SDK
33
description: Learn how to diagnose and fix slow requests when you use Azure Cosmos DB .NET SDK.
4-
author: j82w
4+
author: ealsur
55
ms.service: cosmos-db
66
ms.subservice: cosmosdb-sql
7-
ms.date: 03/09/2022
8-
ms.author: jawilley
7+
ms.date: 07/08/2022
8+
ms.author: maquaran
99
ms.topic: troubleshooting
1010
ms.reviewer: mjbrown
1111
---
@@ -43,7 +43,7 @@ If you need to verify that a database or container exists, don't do so by callin
4343
* You are not measuring latency while debugging the application (no debuggers attached).
4444
* The volume of operations is high, don't use bulk for less than 1000 operations. Your provisioned throughput dictates how many operations per second you can process, your goal with bulk would be to utilize as much of it as possible.
4545
* Monitor the container for [throttling scenarios](troubleshoot-request-rate-too-large.md). If the container is getting heavily throttled it means the volume of data is larger than your provisioned throughput, you need to either scale up the container or reduce the volume of data (maybe create smaller batches of data at a time).
46-
* You are correctly using the `async/await` pattern to process all concurrent Tasks and not [blocking any async operation](https://github.com/davidfowl/AspNetCoreDiagnosticScenarios/blob/master/AsyncGuidance.md#avoid-using-taskresult-and-taskwait).
46+
* You are correctly using the `async/await` pattern to [process all concurrent Tasks](tutorial-sql-api-dotnet-bulk-import.md#step-6-populate-a-list-of-concurrent-tasks) and not [blocking any async operation](https://github.com/davidfowl/AspNetCoreDiagnosticScenarios/blob/master/AsyncGuidance.md#avoid-using-taskresult-and-taskwait).
4747

4848
## <a name="capture-diagnostics"></a>Capture the diagnostics
4949

0 commit comments

Comments
 (0)