Skip to content

Commit d34558a

Browse files
Merge pull request #231256 from ealsur/users/ealsur/rntbdd
SDK: Fix request timeline labels
2 parents 6c2de0a + a8f2636 commit d34558a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/cosmos-db/nosql/troubleshoot-dotnet-sdk-slow-request.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: ealsur
55
ms.service: cosmos-db
66
ms.subservice: nosql
77
ms.custom: ignite-2022
8-
ms.date: 08/30/2022
8+
ms.date: 03/13/2023
99
ms.author: maquaran
1010
ms.topic: troubleshooting
1111
ms.reviewer: mjbrown
@@ -169,14 +169,14 @@ For multiple store results for a single request, be aware of the following:
169169
* Strong consistency and bounded staleness consistency always have at least two store results.
170170
* Check the status code of each `StoreResult`. The SDK retries automatically on multiple different [transient failures](troubleshoot-dotnet-sdk-request-timeout.md). The SDK is constantly improved to cover more scenarios.
171171

172-
### RntbdRequestStats
172+
### RequestTimeline
173173

174174
Show the time for the different stages of sending and receiving a request in the transport layer.
175175

176-
* `ChannelAcquisitionStarted`: The time to get or create a new connection. You can create new connections for numerous different regions. For example, let's say that a connection was unexpectedly closed, or too many requests were getting sent through the existing connections. You create a new connection.
177-
* *Pipelined time is large* might be caused by a large request.
178-
* *Transit time is large*, which leads to a networking problem. Compare this number to the `BELatencyInMs`. If `BELatencyInMs` is small, then the time was spent on the network, and not on the Azure Cosmos DB service.
179-
* *Received time is large* might be caused by a thread starvation problem. This is the time between having the response and returning the result.
176+
* `ChannelAcquisitionStarted`: The time to get or create a new connection. You can create new connections for numerous different regions. For example, let's say that a connection was unexpectedly closed, or too many requests were getting sent through the existing connections. You create a new connection.
177+
* `Pipelined` time is large might be caused by a large request.
178+
* `Transit time` is large, which leads to a networking problem. Compare this number to the `BELatencyInMs`. If `BELatencyInMs` is small, then the time was spent on the network, and not on the Azure Cosmos DB service.
179+
* `Received` time is large might be caused by a thread starvation problem. This is the time between having the response and returning the result.
180180

181181
### ServiceEndpointStatistics
182182

0 commit comments

Comments
 (0)