Search Issue Tracker
Won't Fix
Votes
35
Found in
2021.3.17f1
2022.3.3f1
2022.3.4f1
2023.1.4f1
Issue ID
UUM-43067
Regression
No
OnImportAsset leaks 5GB of memory
Run the Test.cs by importing a empty .foo file and unity will never dispose of 5GB of allocated data
!image-2023-07-17-17-19-53-321.png!
Comments (2)
-
stocksweeper
Apr 02, 2024 08:09
How to fix 5GB memory leak error?
-
Rocketman_Dan
Oct 16, 2023 18:49
How the hell is this a won't fix? Saying it's not a memory leak is meaningless if the behaviour is the same.
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- [iOS] Memory leak when unloading Unity as a Library
- Non consistent "Editor Only" label position in the "Library" section
- Wrong minimum size for "Saved Searches Panel" in the Search window
- NullReferenceException is thrown when calling camera.Render() on SceneView Camera during EditorSceneManager.sceneSaved due to missing null check in DrawRenderer2DPass
- Editor freezes when initializing converters with Post-Processing Stack V2 Converter enabled
Resolution Note:
Looking into this with the memory profiler it doesn't seem like this is a leak. I simplified to just use buffers with no GCHandles and the same behavior is there.
It's reserving managed memory, but empty. If I run an import the first import takes a second, but the second file is near instantaneous. It reuses that reserved memory space.
It makes sense why you'd want that model for importers. If I'm going to import 100 files of roughly the same size, I want it to reserve the memory once and then reuse it.
I looked into it for a day and a half and there doesn't appear to be a way to compact that memory space. There are longer term plans to make this architecture work better, but we don't really have a simple fix.
The recommended way to deal with this is to use buffered file streams and object pooling to control the amount of memory being used. I talked to Alexandre and he said they have a solution for now.