Hello, I’ve found a memory leak on Android ARMv7 platform in Unity Core. This script illustrates a problem the best. Once a memory reaches ~800 MB, it never cleans up. The best scenario for that issue is the following:
Make a build on Android ARMv7 platform with IL2CPP selected,
Connect a memory profiler,
Press a test button until memory reaches ~800 MB,
Clear a memory using GC Button,
Continue doing the above steps until you get a crash.
I fully understand, that it’s not an appropriate way of using memory, but exactly this case illustrates, that something wrong with GC on Android platform. What is more, even if I’m allocating 4 MB of RAM and clearing it, the GC doesn’t clear it fully. It releases like 3.5 MB of RAM out of 4 MB. The problem exists on both Mono and IL2CPP scripting backends. Is there a workaround for that kind of problem? Thank you in advance.
If you take 2 Memory Snapshots, each after pressing GC collect button, and compare them, what does it say is occupying extra memory, both on the summary page and on the All Off Memory page (using version 1.0 or 1.1 of the package, it you’re not on 2022+ then by using an empty project with the memory Profiler package installed for analysis, snapshots can be taken from there or imported)
And if it looks like mostly the empty reserved space grew, what does the Memory Map in version 0.7 of the package look like? Are there huge stretches of reserved managed memory that are entirely empty or are there tiny allocations in each and if so, what are these?
Allocate a little bit just to initializ everything
Hit the GC Collect button
Take a snapshot, let’s name it “A”
Allocate a good deal more
Hit GC Collect button
Take another snapshot, let’s name that B
Switch the memory Profiler from single to Compare mode
Open both A and B
What does it say in terms of Managed Memory usage that increased? It it only Empty Fragmented Heap Space?
If not, if you go to the All If Memory page and expand the Scripting Memory section: what does it say changed?
It could be that small allocations sprinkled into the fragmented heap space keep some predominantly empty pages from getting unloaded.
Technically every 6th GC.Collect (implementation detail and subject to change) should unload empty pages, which should happen automatically as you allocate more and more memory because every heap exapnsion happens after GC.Collect failed to make enough space (or was happening incrementally in the background and would therefore not have finished in time for the currently needed allocation). That is unless you’ve set the GCMode to manual or disabled, which would also explain the eventual crashing OutOfMemory…
Building on the above, aside from avoiding managed memory fragmentation, not a lot. To get a clearer picture though you may get some value (for these test purposes only, there is usually no real reason to do so) from calling GC.Collect 6 times (or early out when Profiler.GetMonoHeapSizeLong() returns a lower value after a GC.Collect, indicating that the last GC.Collect was n%6==0.
If the memory usage stays similarly high in empty fragmentated heap memory, then either:
GCMode is set to disabled
Or there’s something on a thread’s (including main thread) stack that looks to the GC like a pointer to memory in this otherwise empty appearing heap space (the memory Profiler doesn’t capture the stack)
Or the memory is actually that fragmented.
Or there is a bug, e.g. in the memory Profiler or the GC
Or I might have forgotten some alternative options
Either way, looking at the Memory Map view of the com.unity.memoryprofiler@0.7.1-preview.1 could then maybe shed some further light on this.
Looks like the problem is in empty fragmented heap, but I didn’t set GCMode to disabled, no other threads are running, no bug in memory profiler (because Android Studio Profiler shows the same) - I just have an empty project and above script attached. I’ve been trying calling GC.Collect more than 6 times, but the results are the same.
The issue persists on all possible versions of Unity 2018 LTS, 2019 LTS, 2022, 2023. Unfortunately, it doesn’t matter what mode for GC I select incremental or not.
I’ve spent plenty of time on that issue, I was trying: to load the test script via Asset Bundle, Addressable, DLL, but once that amount of memory is allocated in the current domain, it’ll be released only after domain unloading. I’ve been thinking to make a hacky solution via another App Domain or another Unity Activity on Android platform, but from what I know, Unity doesn’t support more than 1 App Domain and 2 instances of Unity can’t be run in the same Android App.
I can confirm that the memory fragmentation in Unity is generally way higher than expected - especially on Android (but for us it’s also true on Arm64 Builds)
@JoshPeterson , @MartinTilo , is there a way to update a bdwgc to some recent version?
is there a way to force use SG garbage collector instead of bdwgc?
is there anyway I can influence on GC under hood logic?
There is not. If you follow Josh’s Blog Post series on updating the .Net runtime, you can see how there are several deep lying reasons within the Unity codebase for why anything but the currently used, non-moving, non-generational, Boehm GC, is not yet compatible with Unity at this point (and how work towards a future in which it will be possible is already on the way).
As for your issue here, I’ve just last week realized that the Memory Profiler package code does not treat any pointer sized value as a potential pointer to the heap in the same way as the conservative Boehm GC does. So it currently only finds managed Objects that are referenced from a root via actual reference type fields. This means it also ignores IntPtr fields for reference tracking and finding of all held objects.
I can’t be sure but particularly since you mentioned that this happens with ARMv7, where pointer size == sizeof(int), this would increase the possibility that the GC thinks that some int is referencing these strings and keeps them in memory, and that the current versions of the Memory Profiler wouldn’t find these.
Additionally there is the chance that some thread local variables or internal .Net type objects that do not have their type info exposed to the Memory Profiler capture process are holding on to this memory.
I’m suspecting your actual use case behind this artificial repro script is not in exponentially increasing the size of a string through concatenation with itself? Is it in string memory? Are you using StringBuilder? Have you tried keeping the data as a list of smaller chunks of data (strings or otherwise)?
Have you tried moving your logic off of the main thread and onto a scripting thread that you terminate once you no longer need the memory? That could take care of stack local variables holding on to the memory.