简体   繁体   中英

Memory not getting freed up in Asp.Net core api

I have an issue where the memory is not getting freed up in my .NET Core Web API. All I am doing is simply returning a string from a static class.

API:

[HttpGet]
public string Get()
{
    return A.get();
}

public static class A
{
    public static string get()
    {
        return "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
    }
}

Client:

HttpClient hc = new HttpClient();
for(int i=0;i<100000;i++)
{
    //var v = hc.GetAsync("http://localhost:52425/api/values").result;
    hc.GetStringAsync("http://localhost:52425/api/values");
    if(i%1000 == 0)
    {
        Thread.Sleep(10000);
        Console.WriteLine("Sleeping-----------" + i);
    }
}

I have tried returning the string directly from the action method without the static class. I have also tried to call the API from the client in synchronous fashion rather than async. None of these made any difference.

This screenshot shows that where GC is called once but does not help clear up the memory.

诊断记忆

Here are the diagnostics after upgrading to 2.0 and disabling telemetry info:

在此处输入图片说明

It seems that Application Insights is collecting data even when you are not using it and thus you see memory increase. After some time those objects are collected by GC.

Application insights are turned on by default by Visual Studio. There are two options to turn off Application Insights:

  1. Add TelemetryConfiguration.Active.DisableTelemetry = true; to ConfigureServices and you should see performance improvements.
  2. In launchSettings.json add ASPNETCORE_preventHostingStartup key:
 "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development", "ASPNETCORE_preventHostingStartup": "True" }

This one could potentionaly tun off some other stuff. Read more about it here .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM