Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorHao Kung <HaoK@users.noreply.github.com>2022-04-30 02:04:22 +0300
committerGitHub <noreply@github.com>2022-04-30 02:04:22 +0300
commite579ee6ba1909c84dbc4c033292193ff42a96b36 (patch)
treed0d0af4f737bb5ef5beea2d88a033d94a5a13078 /docs
parentf6cddc1136fa9310a8fa0a06af8a461b409071a9 (diff)
Update Helix.md (#41448)
Diffstat (limited to 'docs')
-rw-r--r--docs/Helix.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/Helix.md b/docs/Helix.md
index 3d837deab5..3d56c68b16 100644
--- a/docs/Helix.md
+++ b/docs/Helix.md
@@ -137,3 +137,20 @@ Goal is to balance cost/flakiness against having some coverage of supported dist
- Example PR: dotnet/dotnet-buildtools-prereqs-docker#398
- Summary is to update [manifest.json](https://github.com/dotnet/dotnet-buildtools-prereqs-docker/blob/main/manifest.json) with an entry for the new dockerfiles, and then add the docker files as well to dotnet-buildtools-prereqs-docker
- The resulting new docker queue id will be found in: [image-info.dotnet-dotnet-buildtools-prereqs-docker-main.json](https://github.com/dotnet/versions/blob/main/build-info/docker/image-info.dotnet-dotnet-buildtools-prereqs-docker-main.json)
+
+## Investigating helix run time issues
+
+Kusto has all of the helix job data, using a particular job id, with the following query you can get a breakdown of the test projects that take the longest. Ideally to take advantage of the largest fan out, we want smaller test projects since the longest running test project will be the gate for finishing the entire helix test job.
+
+https://dataexplorer.azure.com/clusters/engsrvprod/databases/engineeringdata
+
+```
+WorkItems
+| where JobName == "bc108374-750c-4084-853e-bc5b9b0d553e"
+| where Name != JobName
+| extend RunTime = Finished-Started
+| top 20 by RunTime desc
+| project FriendlyName, RunTime
+```
+
+![image](https://user-images.githubusercontent.com/6537861/144129895-e1e82815-4192-431c-a7b3-dd055b813978.png)