-
-
Notifications
You must be signed in to change notification settings - Fork 323
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
impr: Speed up getBinaryImages V2 #4539
base: main
Are you sure you want to change the base?
Conversation
Follow up on GH-4435. Use binary image cache to get debug meta when finishing the tracer and capturing profiles. Mark all methods to get debug meta not using the cache as deprecated to ensure we migrate to the methods using the cache.
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.
LGTM
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #4539 +/- ##
=============================================
- Coverage 91.560% 91.559% -0.001%
=============================================
Files 614 614
Lines 69777 69923 +146
Branches 24880 24976 +96
=============================================
+ Hits 63888 64021 +133
- Misses 5797 5809 +12
- Partials 92 93 +1
... and 47 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
|
Performance metrics 🚀
|
Revision | Plain | With Sentry | Diff |
---|---|---|---|
b11cd87 | 1234.51 ms | 1250.52 ms | 16.01 ms |
5b14b06 | 1196.33 ms | 1227.00 ms | 30.67 ms |
aa4eddf | 1228.21 ms | 1236.72 ms | 8.51 ms |
a4ee85b | 1227.57 ms | 1232.32 ms | 4.75 ms |
4d3df92 | 1245.35 ms | 1259.58 ms | 14.23 ms |
e8b11f8 | 1233.66 ms | 1249.74 ms | 16.08 ms |
6161814 | 1216.90 ms | 1233.18 ms | 16.29 ms |
742d4b6 | 1217.04 ms | 1229.38 ms | 12.33 ms |
2124551 | 1231.78 ms | 1264.94 ms | 33.16 ms |
ecd9ecd | 1215.77 ms | 1238.70 ms | 22.93 ms |
App size
Revision | Plain | With Sentry | Diff |
---|---|---|---|
b11cd87 | 21.58 KiB | 631.86 KiB | 610.28 KiB |
5b14b06 | 22.84 KiB | 402.56 KiB | 379.72 KiB |
aa4eddf | 21.58 KiB | 544.86 KiB | 523.28 KiB |
a4ee85b | 20.76 KiB | 434.92 KiB | 414.16 KiB |
4d3df92 | 22.85 KiB | 413.45 KiB | 390.60 KiB |
e8b11f8 | 22.85 KiB | 411.92 KiB | 389.07 KiB |
6161814 | 21.58 KiB | 713.97 KiB | 692.39 KiB |
742d4b6 | 21.58 KiB | 546.19 KiB | 524.61 KiB |
2124551 | 22.85 KiB | 411.69 KiB | 388.84 KiB |
ecd9ecd | 20.76 KiB | 420.23 KiB | 399.47 KiB |
📜 Description
Follow up on GH-4435. Use binary image cache to get debug meta when finishing the tracer and capturing profiles. Mark all methods to get debug meta not using the cache as deprecated to ensure we migrate to the methods using the cache.
💡 Motivation and Context
Our customer reported that even with GH-4435, they still see app hangs.
💚 How did you test it?
Unit tests, still need to test it with a testflight build to check profiles and transactions.
📝 Checklist
You have to check all boxes before merging:
sendDefaultPII
is enabled.🔮 Next steps