-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
App Memory And OOM Support #12903
base: main
Are you sure you want to change the base?
App Memory And OOM Support #12903
Conversation
Added some header docs Added a few simple tests check.sh fixes Moved a few things around
FIRCLSAppMemory *memoryInfo = [[FIRCLSAppMemory alloc] initWithJSONObject:breadcrumbs]; | ||
if (memoryInfo.isOutOfMemory) { | ||
FIRCLSInfoLog(@"Writing OOM record to %@", path); | ||
FIRCLSExceptionRecordOutOfMemoryTerminationAtPath(path.UTF8String); |
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.
I'm surprised that even though the clsrecord is written out correctly, recognized by the local system as a valid part of the report and uploaded to the backend, it is not recognized server side and doesn't end up in the Firecase Crashlytics dashboard. Maybe the maintainers could help me figure out why (I don't think I have access to the backend code).
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.
What
This PR introduces
memory pressure
andmemory level
systems in order to effectively track memory terminations and correctly report them changes as non-fatals and report OOMs as well.Why
A lot has changed since this article about handling memory terminations. In order to bring Crashlytics OOM handling up to date, some additional heuristics are needed.
Discussions:
#12897
#12889
#8130