Skip to content

Instantly share code, notes, and snippets.

@antonfirsov
Last active July 8, 2021 11:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antonfirsov/01bb6b7b8569027cd71988ff33c66228 to your computer and use it in GitHub Desktop.
Save antonfirsov/01bb6b7b8569027cd71988ff33c66228 to your computer and use it in GitHub Desktop.
GCMemoryInfoMinimalRepro
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net6.0;net5.0;netcoreapp3.1</TargetFrameworks>
</PropertyGroup>
</Project>
using System;
using System.Collections.Generic;
using System.Threading;
namespace GCMemoryInfoMinimalRepro
{
class Program
{
private static List<byte[]> _gcArrays = new List<byte[]>();
static void Main()
{
Console.WriteLine($"Is64BitProcess: {Environment.Is64BitProcess}");
const int OneMB = 1024 * 1024;
for (int i=0; i < 1024 * 32 ;i++)
{
byte[] array = new byte[OneMB];
_gcArrays.Add(array);
if (i % 64 == 0)
{
GC.Collect();
GCMemoryInfo info = GC.GetGCMemoryInfo();
long gcTotal = GC.GetTotalMemory(false);
Console.WriteLine($"Retained: {i} MB, GC Total: {MB(gcTotal)}, TotalAvailableMemory:{MB(info.TotalAvailableMemoryBytes)}, HighMemoryLoadThreshold:{MB(info.HighMemoryLoadThresholdBytes)}, MemoryLoad:{MB(info.MemoryLoadBytes)}");
Thread.Sleep(30);
}
}
}
static string MB(long bytes) => $"{bytes / 1024 / 1024} MB";
}
}
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace GCMemoryInfoMinimalRepro
{
class Program
{
private static List<byte[]> _gcArrays = new List<byte[]>();
static void Main()
{
Console.WriteLine($"Is64BitProcess: {Environment.Is64BitProcess}");
const int OneMB = 1024 * 1024;
for (int i=0; i < 1024 * 32 ;i++)
{
byte[] array = new byte[OneMB];
_gcArrays.Add(array);
if (i % 64 == 0)
{
TouchAll();
GC.Collect();
GCMemoryInfo info = GC.GetGCMemoryInfo();
long gcTotal = GC.GetTotalMemory(false);
Console.WriteLine($"Retained: {i} MB, GC Total: {MB(gcTotal)}, TotalAvailableMemory:{MB(info.TotalAvailableMemoryBytes)}, HighMemoryLoadThreshold:{MB(info.HighMemoryLoadThresholdBytes)}, MemoryLoad:{MB(info.MemoryLoadBytes)}");
// Thread.Sleep(30);
}
}
}
static string MB(long bytes) => $"{bytes / 1024 / 1024} MB";
private static void TouchAll()
{
Parallel.ForEach(_gcArrays, TouchPage);
}
private static void TouchPage(byte[] b)
{
uint size = (uint)b.Length;
const uint pageSize = 4096;
uint numPages = size / pageSize;
for (uint i = 0; i < numPages; i++)
{
b[i * pageSize] = (byte)(i % 256);
}
}
}
}
Is64BitProcess: False
Retained: 0 MB, GC Total: 1 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:143 MB
Retained: 64 MB, GC Total: 65 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:225 MB
Retained: 128 MB, GC Total: 129 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:286 MB
Retained: 192 MB, GC Total: 193 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:368 MB
Retained: 256 MB, GC Total: 257 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:450 MB
Retained: 320 MB, GC Total: 321 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:511 MB
Retained: 384 MB, GC Total: 385 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:573 MB
Retained: 448 MB, GC Total: 449 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:634 MB
Retained: 512 MB, GC Total: 513 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:737 MB
Retained: 576 MB, GC Total: 577 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:798 MB
Retained: 640 MB, GC Total: 641 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:860 MB
Retained: 704 MB, GC Total: 705 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:921 MB
Retained: 768 MB, GC Total: 769 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:1003 MB
Retained: 832 MB, GC Total: 833 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:1064 MB
Retained: 896 MB, GC Total: 897 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:1126 MB
Retained: 960 MB, GC Total: 961 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:1208 MB
Retained: 1024 MB, GC Total: 1025 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:1290 MB
Retained: 1088 MB, GC Total: 1089 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:1351 MB
Retained: 1152 MB, GC Total: 1153 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:1413 MB
Retained: 1216 MB, GC Total: 1217 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:1494 MB
Retained: 1280 MB, GC Total: 1281 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:1556 MB
Retained: 1344 MB, GC Total: 1345 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:1617 MB
Retained: 1408 MB, GC Total: 1409 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:1679 MB
Retained: 1472 MB, GC Total: 1473 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:1761 MB
Retained: 1536 MB, GC Total: 1537 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:1822 MB
Retained: 1600 MB, GC Total: 1601 MB, TotalAvailableMemory:2047 MB, HighMemoryLoadThreshold:1843 MB, MemoryLoad:1884 MB
Out of memory.
Is64BitProcess: False
Retained: 0 MB, GC Total: 1 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:1462 MB
Retained: 64 MB, GC Total: 65 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:2112 MB
Retained: 128 MB, GC Total: 129 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:2599 MB
Retained: 192 MB, GC Total: 193 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:3087 MB
Retained: 256 MB, GC Total: 257 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:3737 MB
Retained: 320 MB, GC Total: 321 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:4387 MB
Retained: 384 MB, GC Total: 385 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:4874 MB
Retained: 448 MB, GC Total: 449 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:5362 MB
Retained: 512 MB, GC Total: 513 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:6012 MB
Retained: 576 MB, GC Total: 577 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:6499 MB
Retained: 640 MB, GC Total: 641 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:6987 MB
Retained: 704 MB, GC Total: 705 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:7637 MB
Retained: 768 MB, GC Total: 769 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:8287 MB
Retained: 832 MB, GC Total: 833 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:8774 MB
Retained: 896 MB, GC Total: 897 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:9262 MB
Retained: 960 MB, GC Total: 961 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:9911 MB
Retained: 1024 MB, GC Total: 1025 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:10399 MB
Retained: 1088 MB, GC Total: 1089 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:10886 MB
Retained: 1152 MB, GC Total: 1153 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:11374 MB
Retained: 1216 MB, GC Total: 1217 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:12024 MB
Retained: 1280 MB, GC Total: 1281 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:12511 MB
Retained: 1344 MB, GC Total: 1345 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:13161 MB
Retained: 1408 MB, GC Total: 1409 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:13649 MB
Retained: 1472 MB, GC Total: 1473 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:14299 MB
Retained: 1536 MB, GC Total: 1537 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:14786 MB
Out of memory.
Is64BitProcess: True
Retained: 0 MB, GC Total: 1 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:7474 MB
Retained: 64 MB, GC Total: 65 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:7474 MB
Retained: 128 MB, GC Total: 129 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:7474 MB
Retained: 192 MB, GC Total: 193 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:7637 MB
Retained: 256 MB, GC Total: 257 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:7637 MB
Retained: 320 MB, GC Total: 321 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:7799 MB
Retained: 384 MB, GC Total: 385 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:7799 MB
Retained: 448 MB, GC Total: 449 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:7799 MB
Retained: 512 MB, GC Total: 513 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:7962 MB
Retained: 576 MB, GC Total: 577 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:7962 MB
Retained: 640 MB, GC Total: 641 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:8124 MB
Retained: 704 MB, GC Total: 705 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:8124 MB
Retained: 768 MB, GC Total: 769 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:8124 MB
Retained: 832 MB, GC Total: 833 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:8287 MB
Retained: 896 MB, GC Total: 897 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:8287 MB
Retained: 960 MB, GC Total: 961 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:8449 MB
Retained: 1024 MB, GC Total: 1025 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:8449 MB
Retained: 1088 MB, GC Total: 1089 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:8449 MB
Retained: 1152 MB, GC Total: 1153 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:8612 MB
Retained: 1216 MB, GC Total: 1217 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:8612 MB
Retained: 1280 MB, GC Total: 1281 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:8612 MB
Retained: 1344 MB, GC Total: 1345 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:8774 MB
Retained: 1408 MB, GC Total: 1409 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:8774 MB
Retained: 1472 MB, GC Total: 1473 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:8937 MB
Retained: 1536 MB, GC Total: 1537 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:8937 MB
Retained: 1600 MB, GC Total: 1601 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:8937 MB
Retained: 1664 MB, GC Total: 1665 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:9099 MB
Retained: 1728 MB, GC Total: 1729 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:9099 MB
Retained: 1792 MB, GC Total: 1793 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:9262 MB
Retained: 1856 MB, GC Total: 1857 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:9262 MB
Retained: 1920 MB, GC Total: 1921 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:9262 MB
Retained: 1984 MB, GC Total: 1985 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:9424 MB
Retained: 2048 MB, GC Total: 2049 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:9424 MB
Retained: 2112 MB, GC Total: 2113 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:9587 MB
Retained: 2176 MB, GC Total: 2177 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:9587 MB
Retained: 2240 MB, GC Total: 2241 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:9587 MB
Retained: 2304 MB, GC Total: 2305 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:9749 MB
Retained: 2368 MB, GC Total: 2369 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:9749 MB
Retained: 2432 MB, GC Total: 2433 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:9911 MB
Retained: 2496 MB, GC Total: 2497 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:9911 MB
Retained: 2560 MB, GC Total: 2561 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:9911 MB
Retained: 2624 MB, GC Total: 2625 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:10074 MB
Retained: 2688 MB, GC Total: 2689 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:10074 MB
Retained: 2752 MB, GC Total: 2753 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:10236 MB
Retained: 2816 MB, GC Total: 2817 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:10236 MB
Retained: 2880 MB, GC Total: 2881 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:10236 MB
Retained: 2944 MB, GC Total: 2945 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:10399 MB
Retained: 3008 MB, GC Total: 3009 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:10399 MB
Retained: 3072 MB, GC Total: 3073 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:10561 MB
Retained: 3136 MB, GC Total: 3137 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:10561 MB
Retained: 3200 MB, GC Total: 3201 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:10561 MB
Retained: 3264 MB, GC Total: 3265 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:10724 MB
Retained: 3328 MB, GC Total: 3329 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:10724 MB
Retained: 3392 MB, GC Total: 3393 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:10886 MB
Retained: 3456 MB, GC Total: 3457 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:10886 MB
Retained: 3520 MB, GC Total: 3521 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:10886 MB
Retained: 3584 MB, GC Total: 3585 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:11049 MB
Retained: 3648 MB, GC Total: 3649 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:11049 MB
Retained: 3712 MB, GC Total: 3713 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:11211 MB
Retained: 3776 MB, GC Total: 3777 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:11211 MB
Retained: 3840 MB, GC Total: 3841 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:11211 MB
Retained: 3904 MB, GC Total: 3905 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:11374 MB
Retained: 3968 MB, GC Total: 3969 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:11374 MB
Retained: 4032 MB, GC Total: 4033 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:11374 MB
Retained: 4096 MB, GC Total: 4097 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:11536 MB
Retained: 4160 MB, GC Total: 4161 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:11536 MB
Retained: 4224 MB, GC Total: 4225 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:11536 MB
Retained: 4288 MB, GC Total: 4289 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:11699 MB
Retained: 4352 MB, GC Total: 4353 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:11699 MB
Retained: 4416 MB, GC Total: 4417 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:11861 MB
Retained: 4480 MB, GC Total: 4481 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:11861 MB
Retained: 4544 MB, GC Total: 4545 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:11861 MB
Retained: 4608 MB, GC Total: 4609 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:12024 MB
Retained: 4672 MB, GC Total: 4673 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:12024 MB
Retained: 4736 MB, GC Total: 4737 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:12186 MB
Retained: 4800 MB, GC Total: 4801 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:12186 MB
Retained: 4864 MB, GC Total: 4865 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:12186 MB
Retained: 4928 MB, GC Total: 4929 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:12349 MB
Retained: 4992 MB, GC Total: 4993 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:12349 MB
Retained: 5056 MB, GC Total: 5057 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:12511 MB
Retained: 5120 MB, GC Total: 5121 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:12511 MB
Retained: 5184 MB, GC Total: 5185 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:12511 MB
Retained: 5248 MB, GC Total: 5249 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:12674 MB
Retained: 5312 MB, GC Total: 5313 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:12674 MB
Retained: 5376 MB, GC Total: 5377 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:12836 MB
Retained: 5440 MB, GC Total: 5441 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:12836 MB
Retained: 5504 MB, GC Total: 5505 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:12836 MB
Retained: 5568 MB, GC Total: 5569 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:12999 MB
Retained: 5632 MB, GC Total: 5633 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:12999 MB
Retained: 5696 MB, GC Total: 5697 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:13161 MB
Retained: 5760 MB, GC Total: 5761 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:13161 MB
Retained: 5824 MB, GC Total: 5825 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:13161 MB
Retained: 5888 MB, GC Total: 5889 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:13324 MB
Retained: 5952 MB, GC Total: 5953 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:13324 MB
Retained: 6016 MB, GC Total: 6017 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:13324 MB
Retained: 6080 MB, GC Total: 6081 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:13486 MB
Retained: 6144 MB, GC Total: 6145 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:13486 MB
Retained: 6208 MB, GC Total: 6209 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:13649 MB
Retained: 6272 MB, GC Total: 6273 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:13649 MB
Retained: 6336 MB, GC Total: 6337 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:13649 MB
Retained: 6400 MB, GC Total: 6401 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:13811 MB
Retained: 6464 MB, GC Total: 6465 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:13811 MB
Retained: 6528 MB, GC Total: 6529 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:13974 MB
Retained: 6592 MB, GC Total: 6593 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:13974 MB
Retained: 6656 MB, GC Total: 6657 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:13974 MB
Retained: 6720 MB, GC Total: 6721 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:14136 MB
Retained: 6784 MB, GC Total: 6785 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:14136 MB
Retained: 6848 MB, GC Total: 6849 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:14299 MB
Retained: 6912 MB, GC Total: 6913 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:14299 MB
Retained: 6976 MB, GC Total: 6977 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:14299 MB
Retained: 7040 MB, GC Total: 7041 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:14461 MB
Retained: 7104 MB, GC Total: 7105 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:14461 MB
Retained: 7168 MB, GC Total: 7169 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:14461 MB
Retained: 7232 MB, GC Total: 7233 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:14624 MB
Retained: 7296 MB, GC Total: 7297 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:14624 MB
Retained: 7360 MB, GC Total: 7361 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:14786 MB
Retained: 7424 MB, GC Total: 7425 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:14786 MB
Retained: 7488 MB, GC Total: 7489 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:14786 MB
Retained: 7552 MB, GC Total: 7553 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:14949 MB
Retained: 7616 MB, GC Total: 7617 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:14949 MB
Retained: 7680 MB, GC Total: 7681 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:14949 MB
Retained: 7744 MB, GC Total: 7745 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:15111 MB
Retained: 7808 MB, GC Total: 7809 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:15111 MB
Retained: 7872 MB, GC Total: 7873 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:15111 MB
Retained: 7936 MB, GC Total: 7937 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:15274 MB
Retained: 8000 MB, GC Total: 8001 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:15274 MB
Retained: 8064 MB, GC Total: 8065 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:15436 MB
Retained: 8128 MB, GC Total: 8129 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:15436 MB
Retained: 8192 MB, GC Total: 8193 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:15599 MB
Retained: 8256 MB, GC Total: 8257 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:15599 MB
Retained: 8320 MB, GC Total: 8321 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:15599 MB
Retained: 8384 MB, GC Total: 8385 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:15761 MB
Retained: 8448 MB, GC Total: 8449 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:15761 MB
Retained: 8512 MB, GC Total: 8513 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:15761 MB
Retained: 8576 MB, GC Total: 8577 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:15761 MB
Retained: 8640 MB, GC Total: 8641 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:15924 MB
Retained: 8704 MB, GC Total: 8705 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:15924 MB
Retained: 8768 MB, GC Total: 8769 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:15924 MB
Retained: 8832 MB, GC Total: 8833 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 8896 MB, GC Total: 8897 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 8960 MB, GC Total: 8961 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 9024 MB, GC Total: 9025 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 9088 MB, GC Total: 9089 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 9152 MB, GC Total: 9153 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 9216 MB, GC Total: 9217 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 9280 MB, GC Total: 9281 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 9344 MB, GC Total: 9345 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 9408 MB, GC Total: 9409 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 9472 MB, GC Total: 9473 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 9536 MB, GC Total: 9537 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 9600 MB, GC Total: 9601 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 9664 MB, GC Total: 9665 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 9728 MB, GC Total: 9729 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 9792 MB, GC Total: 9793 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 9856 MB, GC Total: 9857 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 9920 MB, GC Total: 9921 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 9984 MB, GC Total: 9985 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 10048 MB, GC Total: 10049 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 10112 MB, GC Total: 10113 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 10176 MB, GC Total: 10177 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 10240 MB, GC Total: 10241 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 10304 MB, GC Total: 10305 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 10368 MB, GC Total: 10369 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 10432 MB, GC Total: 10433 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 10496 MB, GC Total: 10497 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 10560 MB, GC Total: 10561 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 10624 MB, GC Total: 10625 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 10688 MB, GC Total: 10689 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 10752 MB, GC Total: 10753 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 10880 MB, GC Total: 10881 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 10944 MB, GC Total: 10945 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 11008 MB, GC Total: 11009 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 11072 MB, GC Total: 11073 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 11136 MB, GC Total: 11137 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 11200 MB, GC Total: 11201 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 11264 MB, GC Total: 11265 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 11328 MB, GC Total: 11329 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 11392 MB, GC Total: 11393 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 11456 MB, GC Total: 11457 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 11520 MB, GC Total: 11521 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 11584 MB, GC Total: 11585 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 11648 MB, GC Total: 11649 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 11712 MB, GC Total: 11713 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 11776 MB, GC Total: 11777 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 11840 MB, GC Total: 11841 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 11904 MB, GC Total: 11905 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 11968 MB, GC Total: 11969 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 12032 MB, GC Total: 12033 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 12096 MB, GC Total: 12097 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 12160 MB, GC Total: 12161 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 12224 MB, GC Total: 12225 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 12288 MB, GC Total: 12289 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 12352 MB, GC Total: 12353 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 12416 MB, GC Total: 12417 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 12480 MB, GC Total: 12481 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Retained: 12544 MB, GC Total: 12545 MB, TotalAvailableMemory:16249 MB, HighMemoryLoadThreshold:14624 MB, MemoryLoad:16086 MB
Out of memory.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment