Open prabakaran-sangameswaran opened 3 years ago
I also inspected this issue several days ago, the mem usage and heap analysis was similar to yours.
My env is 22000 + experimental1
. WinUI3 indeed has many performance problems to solve.
My case with this issue is more severe that what's inside the GridView
is tons of Image
each of which is bearing a BitmapImage
as its source. And I found that the memory usage stays high even if I have cleared the item source of that GridView
and confirmed multiple times that there are no other references to prevent the items from begin collected. I run both managed and native profiling several times and, initially, I thought this was a WinRT issue that the BitmapImage
can't free up its resource correctly since the issue is immediately resolved once we changed the BitmapImage
to SoftwareBitmap
and handled the disposal of it manually.
On my side, I just use Navigate
with WinUI 0.8.5 on a Frame. And memory grow every time Navigate
is call. Don't know if I don't use correctly on my side. But clearly a memory leak.
Simple reproduction: https://discord.com/channels/372137812037730304/580484525075857428/902663747091460147
Hi Team,
Any update on this?
I have the same problem with .NET 6 and Windows App SDK 1.0. The memory is not released after I leave a page, and when I come back it's increasing with the amount needed for the page. If the memory needed for that page is 50 MBs, each time I navigate back and forth, it keeps increasing with 50 MBs. The page constructor is never hit.
NavigationCacheMode=Disabled
and IsNagivationStackEnabled=False
, same problemIDisposable
, but not even that is hit when I leave the page, same problemBindinds.StopTracking()
on Page Unload event, same problemGC.Collect()
on Page Unload event, same problemEven when NavigatioView is used with controls (and not with a Page), the memory used by these controls will not be released after closing the NavigationView. I tested with the NavigationView in its own UserControl. On 'navigation', I set the Visibility of UI elements in a
Any update? It's a serious bug, I think.
It should be fixed in the latest WindowsAppSDK version. I tested navigating back & forth and it's indeed increasing the memory but for my app it stops at around 500 MB of RAM. As far as I know there is a cache limit until which no memory will be released, so probably that's why it's still increasing.
Is this issue not a high priority? "WinUI 3 Gallery" and "PowerToys" also has this problem(WinAppSDK: 1.2).
Any news on this? Otherwise, where can I look to get updates for this? Created a WinUI 3, version 1.3, app with the template studio under win 11 and memory is increasing after each menu change. @bogdan-patraucean I might not be up to date in C# and .NET, but 500 MB full of items not needed sounds kind of unpleasent for me. Where are the times youd want a app that uses as little memory as possible?
@vfib memory usage still increase when more than 500 MB, but the growth will slow down. if you continue navigation, your app will crash. (tested with WinAppSDK 1.3)
Powertoys can be used for testing, navigated to difference page many times, Powertoys will crash.
Temporary solutions is:
private void ContentFrame_Navigated(object sender, NavigationEventArgs e)
{
System.GC.Collect();
}
@l619534951 Yeah, there seem to be some problems with navigation right now. Offtopic, but setting a ThemeResource to create a card like stackpanel in settings page causes my app to crash under certain circumstances after third navigation back and forth. But thanks for that workaround!
Years later this is still an issue from UWP days... Is this something that can actually be solved? Or should we rather undertake the massive effort to move our years-in-the-making application to a different platform?
We've made leak fixes in the recent 1.4 WASDK release. Please give the latest build a try and let us know if this is still an issue. Memory growth is expected until GC kicks in. If you see unbounded growth or leak in a native app, please let us know.
@ranjeshj I have updated to 1.4.231008000 and don't see any difference whatsoever. The GC barely cleans up anything at all. Memory build-up diminishes when approaching the 500 MB mark but it will inevitably overflow. This is still a huge issue and should be re-opened
It really is a great misfortune that such a central function as navigation still does not work without errors. It is not possible to develop professional applications with the WinAppSdk in its current state. The memory leak in the navigation in combination with the use of the WebView2 control (a new instance is created with every page change) causes every application to crash after a few days of use. I hate to think back to the day over a year ago when our team made the decision to build a new LOB application based on WinUI3.
@vfib memory usage still increase when more than 500 MB, but the growth will slow down. if you continue navigation, your app will crash. (tested with WinAppSDK 1.3)
Powertoys can be used for testing, navigated to difference page many times, Powertoys will crash.
Temporary solutions is:
private void ContentFrame_Navigated(object sender, NavigationEventArgs e) { System.GC.Collect(); }
The official clock app is also crashing when navigating different pages. The memory never releases and getting increased again and again. even settings of windows 11 is having memory leak the memory never gets freed!
Is there any news on this? It still seems to be occurring with WinApp 1.5 (and .NET 8) with a sample app I created.
Confirmed also with VS 17.10
Still reproducible with latest WinUI3 Gallery. Spawning additional windows from "Multiple Windows" menu and closing them not releases memory to initial state. 3 years and issue still not addressed....
Discussion: Why memory leak occurs while displaying a custom code snippets view in a NavigationView's child page.
Describe the bug
While using the
NavigationView
control to navigate child pages, the child page's elements were cleared in its own unloading methods. But, the child pages retaining their memory after closing them.Steps to reproduce the bug
Debug
menu item and select thePerformance Profiler
in Visual studio.Memory Usage
check box and clickStart
buttonTakeScreenshot
button in the Visual Studio diagnostic session.DemoList
Navigation Menu Item in the application.Code Snippets1
grid view item and its opens a code snippets pageBack
app bar buttonCodeSnippets 2
andCodeSnippets 3
Empty Page
Navigation Menu Item.Force GC
in the Visual Studio diagnostic session.TakeScreenshot
button in the Visual Studio diagnostic session.Stop Collection
Memory leak report:
Expected behavior
Memory should be the same or low as the initial screenshot.
Version Info
NuGet package version: [WinUI 3 - Windows App SDK 0.8: 0.8.1]
Windows app type
WinRT
Windows version
October 2020 Update (19042)
Related Links