-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CI Visibility] Add more checks for the object pack files #6256
[CI Visibility] Add more checks for the object pack files #6256
Conversation
Datadog ReportBranch report: ✅ 0 Failed, 370940 Passed, 2098 Skipped, 14h 54m 45.43s Total Time ⌛ Performance Regressions vs Default Branch (2) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So weird 😅
@@ -592,7 +592,7 @@ public async Task<long> SendObjectsPackFileAsync(string commitSha, string[]? com | |||
long totalUploadSize = 0; | |||
foreach (var packFile in packFilesObject.Files) | |||
{ | |||
if (!File.Exists(packFile)) | |||
if (!Directory.Exists(Path.GetDirectoryName(packFile)) || !File.Exists(packFile)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this actually do anything extra? 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To be honest I don't think so, but I mean... I'm already doing a File.Exist but for some reason later is throwing DirectoryNotFoundException, so I don't know if is something weird on debian+arm64 pal implementation or what. Adding this doesn't hurt but I'm with you, I don't think it will be relevant 🤷🏻
Execution-Time Benchmarks Report ⏱️Execution-time results for samples comparing the following branches/commits: Execution-time benchmarks measure the whole time it takes to execute a program. And are intended to measure the one-off costs. Cases where the execution time results for the PR are worse than latest master results are shown in red. The following thresholds were used for comparing the execution times:
Note that these results are based on a single point-in-time result for each branch. For full results, see the dashboard. Graphs show the p99 interval based on the mean and StdDev of the test run, as well as the mean value of the run (shown as a diamond below the graph). gantt
title Execution time (ms) FakeDbCommand (.NET Framework 4.6.2)
dateFormat X
axisFormat %s
todayMarker off
section Baseline
This PR (6256) - mean (79ms) : 65, 93
. : milestone, 79,
master - mean (70ms) : 68, 71
. : milestone, 70,
section CallTarget+Inlining+NGEN
This PR (6256) - mean (1,180ms) : 1015, 1345
. : milestone, 1180,
master - mean (1,112ms) : 1092, 1131
. : milestone, 1112,
gantt
title Execution time (ms) FakeDbCommand (.NET Core 3.1)
dateFormat X
axisFormat %s
todayMarker off
section Baseline
This PR (6256) - mean (108ms) : 106, 110
. : milestone, 108,
master - mean (109ms) : 107, 111
. : milestone, 109,
section CallTarget+Inlining+NGEN
This PR (6256) - mean (772ms) : 760, 783
. : milestone, 772,
master - mean (773ms) : 763, 784
. : milestone, 773,
gantt
title Execution time (ms) FakeDbCommand (.NET 6)
dateFormat X
axisFormat %s
todayMarker off
section Baseline
This PR (6256) - mean (92ms) : 90, 95
. : milestone, 92,
master - mean (92ms) : 90, 94
. : milestone, 92,
section CallTarget+Inlining+NGEN
This PR (6256) - mean (729ms) : 714, 744
. : milestone, 729,
master - mean (731ms) : 713, 749
. : milestone, 731,
gantt
title Execution time (ms) HttpMessageHandler (.NET Framework 4.6.2)
dateFormat X
axisFormat %s
todayMarker off
section Baseline
This PR (6256) - mean (190ms) : 188, 193
. : milestone, 190,
master - mean (190ms) : 187, 193
. : milestone, 190,
section CallTarget+Inlining+NGEN
This PR (6256) - mean (1,221ms) : 1200, 1243
. : milestone, 1221,
master - mean (1,222ms) : 1199, 1246
. : milestone, 1222,
gantt
title Execution time (ms) HttpMessageHandler (.NET Core 3.1)
dateFormat X
axisFormat %s
todayMarker off
section Baseline
This PR (6256) - mean (277ms) : 271, 283
. : milestone, 277,
master - mean (277ms) : 272, 282
. : milestone, 277,
section CallTarget+Inlining+NGEN
This PR (6256) - mean (949ms) : 930, 968
. : milestone, 949,
master - mean (950ms) : 929, 970
. : milestone, 950,
gantt
title Execution time (ms) HttpMessageHandler (.NET 6)
dateFormat X
axisFormat %s
todayMarker off
section Baseline
This PR (6256) - mean (265ms) : 260, 270
. : milestone, 265,
master - mean (265ms) : 260, 269
. : milestone, 265,
section CallTarget+Inlining+NGEN
This PR (6256) - mean (933ms) : 914, 951
. : milestone, 933,
master - mean (934ms) : 910, 958
. : milestone, 934,
|
Throughput/Crank Report ⚡Throughput results for AspNetCoreSimpleController comparing the following branches/commits: Cases where throughput results for the PR are worse than latest master (5% drop or greater), results are shown in red. Note that these results are based on a single point-in-time result for each branch. For full results, see one of the many, many dashboards! gantt
title Throughput Linux x64 (Total requests)
dateFormat X
axisFormat %s
section Baseline
This PR (6256) (11.134M) : 0, 11134220
master (11.131M) : 0, 11130779
benchmarks/2.9.0 (11.033M) : 0, 11032866
section Automatic
This PR (6256) (7.232M) : 0, 7231548
master (7.310M) : 0, 7310157
benchmarks/2.9.0 (7.786M) : 0, 7785853
section Trace stats
master (7.599M) : 0, 7598556
section Manual
master (11.073M) : 0, 11072548
section Manual + Automatic
This PR (6256) (6.715M) : 0, 6715186
master (6.775M) : 0, 6775349
section DD_TRACE_ENABLED=0
master (10.251M) : 0, 10251396
gantt
title Throughput Linux arm64 (Total requests)
dateFormat X
axisFormat %s
section Baseline
This PR (6256) (9.687M) : 0, 9686964
master (9.713M) : 0, 9712554
benchmarks/2.9.0 (9.495M) : 0, 9494821
section Automatic
This PR (6256) (6.401M) : 0, 6401043
master (6.514M) : 0, 6513986
section Trace stats
master (6.710M) : 0, 6710317
section Manual
master (9.670M) : 0, 9669749
section Manual + Automatic
This PR (6256) (5.994M) : 0, 5993981
master (6.015M) : 0, 6015065
section DD_TRACE_ENABLED=0
master (8.772M) : 0, 8772254
gantt
title Throughput Windows x64 (Total requests)
dateFormat X
axisFormat %s
section Baseline
This PR (6256) (9.502M) : 0, 9501964
master (10.153M) : 0, 10152752
benchmarks/2.9.0 (10.020M) : 0, 10019592
section Automatic
This PR (6256) (6.147M) : 0, 6147461
master (6.377M) : 0, 6376641
benchmarks/2.9.0 (7.255M) : 0, 7255257
section Trace stats
master (7.126M) : 0, 7126124
section Manual
master (10.105M) : 0, 10104968
section Manual + Automatic
This PR (6256) (5.922M) : 0, 5921932
master (5.901M) : 0, 5901347
section DD_TRACE_ENABLED=0
master (9.225M) : 0, 9225046
|
Summary of changes
This PR adds more checks to the object pack files uploader.
Reason for change
Still receiving this kind of errors:
Other details