-
Notifications
You must be signed in to change notification settings - Fork 18.4k
Description
Please answer these questions before submitting your issue. Thanks!
What version of Go are you using (go version
)?
go version go1.7.4 linux/amd64
What operating system and processor architecture are you using (go env
)?
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH=""
GORACE=""
GOROOT="/usr/local/go"
GOTOOLDIR="/usr/local/go/pkg/tool/linux_amd64"
CC="gcc"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0"
CXX="g++"
CGO_ENABLED="1"
What did you do?
My program allocates 22G of objects. But, the HeapInUse is 35G as per MemStats and process RSS. Process is idle after the allocations. A gc+scavenger run has been executed using os.FreeOSMemory() to free memory back to OS. Also, heap profile was tried with sampling rate of 1KB as well. Then I tried an application level accounting of the memory consumed. That also accounts only 22GB usage. But, go is using 35GB.
Here is the gctrace=1:
gc 1 @0.011s 1%: 0.13+16+0.24 ms clock, 0.41+16/1.4/18+0.74 ms cpu, 16->16->16 MB, 17 MB goal, 40 P
gc 2 @0.031s 2%: 0.076+22+0.28 ms clock, 0.83+14/9.4/15+3.1 ms cpu, 31->31->31 MB, 32 MB goal, 40 P
gc 3 @0.538s 0%: 0.088+23+0.28 ms clock, 1.2+0.032/25/1.3+3.9 ms cpu, 32->33->32 MB, 63 MB goal, 40 P
gc 4 @1.550s 0%: 2.1+37+0.33 ms clock, 27+16/40/0.29+4.3 ms cpu, 47->48->47 MB, 64 MB goal, 40 P
gc 5 @1.722s 0%: 0.15+11+0.33 ms clock, 3.0+0.93/30/16+6.3 ms cpu, 81->83->76 MB, 95 MB goal, 40 P
gc 6 @1.844s 0%: 0.094+31+0.30 ms clock, 1.9+4.1/65/19+6.3 ms cpu, 140->142->126 MB, 152 MB goal, 40 P
gc 7 @2.053s 0%: 0.13+52+0.31 ms clock, 3.2+9.2/128/15+7.5 ms cpu, 241->242->213 MB, 253 MB goal, 40 P
gc 8 @2.423s 0%: 0.096+77+0.36 ms clock, 2.5+1.7/250/32+9.4 ms cpu, 415->420->369 MB, 427 MB goal, 40 P
gc 9 @3.059s 0%: 0.12+99+0.37 ms clock, 3.7+3.3/417/40+11 ms cpu, 719->721->633 MB, 738 MB goal, 40 P
gc 10 @3.963s 1%: 0.062+188+0.38 ms clock, 2.0+0/701/105+12 ms cpu, 1235->1241->1093 MB, 1267 MB goal, 40 P
gc 11 @5.673s 1%: 0.066+111+0.33 ms clock, 2.1+0.28/1052/807+10 ms cpu, 2131->2137->1874 MB, 2186 MB goal, 40 P
gc 12 @8.371s 1%: 0.11+296+0.34 ms clock, 3.6+7.0/1781/344+11 ms cpu, 3655->3662->3197 MB, 3749 MB goal, 40 P
gc 1 @0.011s 1%: 0.12+10+0.23 ms clock, 0.49+0.27/11/0.88+0.94 ms cpu, 16->16->16 MB, 17 MB goal, 40 P
gc 2 @0.025s 2%: 0.058+22+0.28 ms clock, 0.58+11/24/0.82+2.8 ms cpu, 31->31->31 MB, 32 MB goal, 40 P
gc 3 @0.496s 0%: 0.069+12+0.25 ms clock, 0.89+0.024/14/0.85+3.3 ms cpu, 32->33->32 MB, 63 MB goal, 40 P
gc 4 @1.511s 0%: 3.3+27+0.39 ms clock, 46+0.34/46/0.23+5.5 ms cpu, 47->49->47 MB, 64 MB goal, 40 P
gc 5 @1.611s 0%: 0.027+0+11 ms clock, 0.45+0.34/46/0.23+201 ms cpu, 49->49->47 MB, 49 MB goal, 40 P (forced)
gc 6 @1.630s 0%: 0.099+0+10 ms clock, 1.6+0.34/46/0.23+186 ms cpu, 47->47->47 MB, 47 MB goal, 40 P (forced)
gc 7 @2.354s 0%: 0.21+20+0.48 ms clock, 2.3+14/31/0.48+5.2 ms cpu, 81->84->78 MB, 95 MB goal, 40 P
gc 8 @2.879s 0%: 0.17+13+0.58 ms clock, 3.7+42/13/0.75+12 ms cpu, 142->143->82 MB, 156 MB goal, 40 P
gc 9 @2.962s 0%: 0.076+10+0.64 ms clock, 0.30+26/20/0.26+2.5 ms cpu, 156->158->119 MB, 164 MB goal, 40 P
gc 10 @3.071s 0%: 0.15+27+0.69 ms clock, 3.4+49/43/3.2+15 ms cpu, 229->232->157 MB, 238 MB goal, 40 P
gc 11 @3.224s 0%: 0.12+18+1.0 ms clock, 0.25+46/28/0.23+2.1 ms cpu, 308->309->219 MB, 315 MB goal, 40 P
gc 12 @3.503s 0%: 0.18+19+1.1 ms clock, 0.72+38/48/0.10+4.4 ms cpu, 427->430->266 MB, 438 MB goal, 40 P
gc 13 @3.790s 0%: 0.13+15+0.87 ms clock, 1.7+79/60/3.3+11 ms cpu, 520->522->284 MB, 533 MB goal, 40 P
gc 14 @4.122s 0%: 0.13+13+0.69 ms clock, 1.0+92/74/0+5.5 ms cpu, 554->556->302 MB, 568 MB goal, 40 P
gc 15 @4.471s 0%: 0.084+11+0.89 ms clock, 1.3+97/75/36+14 ms cpu, 590->592->321 MB, 605 MB goal, 40 P
gc 16 @4.752s 0%: 0.057+11+0.86 ms clock, 1.2+44/74/78+19 ms cpu, 627->629->342 MB, 643 MB goal, 40 P
gc 17 @5.061s 1%: 0.10+20+0.73 ms clock, 2.2+182/125/0.031+15 ms cpu, 668->673->372 MB, 685 MB goal, 40 P
gc 18 @5.363s 1%: 0.19+16+0.89 ms clock, 3.6+58/118/175+17 ms cpu, 726->731->395 MB, 744 MB goal, 40 P
gc 19 @5.668s 1%: 0.13+17+0.98 ms clock, 0.66+202/116/7.5+4.9 ms cpu, 771->776->418 MB, 791 MB goal, 40 P
gc 20 @6.028s 1%: 0.18+15+0.67 ms clock, 0.75+266/126/0.010+2.7 ms cpu, 816->821->449 MB, 837 MB goal, 40 P
gc 21 @6.435s 1%: 0.095+23+0.98 ms clock, 1.1+128/174/183+11 ms cpu, 875->882->483 MB, 898 MB goal, 40 P
gc 22 @6.857s 1%: 0.14+25+0.81 ms clock, 3.2+48/214/357+18 ms cpu, 942->949->520 MB, 967 MB goal, 40 P
gc 23 @7.298s 1%: 0.034+24+0.94 ms clock, 1.0+126/238/278+30 ms cpu, 1014->1021->553 MB, 1040 MB goal, 40 P
gc 24 @7.748s 1%: 0.17+25+0.89 ms clock, 1.0+373/251/0.10+5.3 ms cpu, 1079->1088->587 MB, 1107 MB goal, 40 P
gc 25 @8.255s 1%: 0.052+31+0.99 ms clock, 1.6+195/263/248+31 ms cpu, 1146->1152->624 MB, 1175 MB goal, 40 P
gc 26 @8.811s 1%: 0.13+30+0.98 ms clock, 2.7+283/293/238+20 ms cpu, 1216->1224->668 MB, 1248 MB goal, 40 P
gc 27 @9.428s 1%: 0.15+41+0.99 ms clock, 1.4+555/362/0.16+8.9 ms cpu, 1303->1312->720 MB, 1336 MB goal, 40 P
gc 28 @10.062s 1%: 0.14+44+0.79 ms clock, 1.1+719/387/0+6.3 ms cpu, 1404->1414->774 MB, 1440 MB goal, 40 P
gc 29 @10.742s 2%: 0.17+45+0.92 ms clock, 1.6+768/423/0.28+8.3 ms cpu, 1510->1520->827 MB, 1549 MB goal, 40 P
gc 30 @11.434s 2%: 0.15+45+0.84 ms clock, 1.2+458/420/365+6.7 ms cpu, 1613->1624->876 MB, 1654 MB goal, 40 P
gc 31 @12.174s 2%: 0.16+46+0.75 ms clock, 1.5+784/458/66+6.8 ms cpu, 1709->1721->935 MB, 1753 MB goal, 40 P
gc 32 @12.997s 2%: 0.13+48+0.91 ms clock, 1.2+489/478/391+8.2 ms cpu, 1825->1839->1000 MB, 1871 MB goal, 40 P
gc 33 @13.904s 2%: 0.28+58+1.0 ms clock, 2.5+1030/534/0+9.2 ms cpu, 1950->1963->1071 MB, 2000 MB goal, 40 P
gc 34 @14.846s 2%: 0.16+66+0.88 ms clock, 1.3+812/626/435+7.0 ms cpu, 2089->2103->1149 MB, 2143 MB goal, 40 P
gc 35 @15.888s 2%: 0.15+71+0.98 ms clock, 1.2+934/705/567+7.8 ms cpu, 2241->2255->1234 MB, 2298 MB goal, 40 P
gc 36 @16.992s 2%: 0.17+91+0.93 ms clock, 1.3+1308/880/305+7.4 ms cpu, 2406->2424->1325 MB, 2468 MB goal, 40 P
gc 37 @18.141s 2%: 0.12+91+0.89 ms clock, 2.4+1701/906/0+17 ms cpu, 2584->2602->1418 MB, 2650 MB goal, 40 P
gc 38 @19.353s 3%: 0.13+97+1.0 ms clock, 1.0+1275/962/522+8.4 ms cpu, 2765->2783->1507 MB, 2836 MB goal, 40 P
gc 39 @20.653s 3%: 0.12+91+0.96 ms clock, 2.1+1354/903/593+16 ms cpu, 2940->2957->1601 MB, 3015 MB goal, 40 P
gc 40 @22.059s 3%: 0.078+98+0.80 ms clock, 1.8+1778/977/268+19 ms cpu, 3122->3141->1707 MB, 3202 MB goal, 40 P
gc 41 @23.569s 3%: 0.13+110+1.0 ms clock, 0.93+1893/1096/359+7.2 ms cpu, 3330->3352->1826 MB, 3415 MB goal, 40 P
gc 42 @25.216s 3%: 0.13+127+0.80 ms clock, 1.0+2442/1259/246+6.4 ms cpu, 3562->3586->1962 MB, 3653 MB goal, 40 P
gc 43 @26.981s 3%: 0.14+156+0.94 ms clock, 2.0+3059/1558/0.16+13 ms cpu, 3826->3854->2117 MB, 3924 MB goal, 40 P
gc 44 @28.935s 3%: 0.33+167+1.0 ms clock, 5.6+3179/1660/364+17 ms cpu, 4128->4159->2274 MB, 4234 MB goal, 40 P
gc 45 @30.015s 4%: 0.18+0+250 ms clock, 1.8+3179/1660/364+2504 ms cpu, 3377->3377->2328 MB, 3377 MB goal, 40 P (forced)
gc 46 @32.229s 4%: 0.19+176+0.88 ms clock, 1.7+3231/1754/749+7.9 ms cpu, 4540->4567->2511 MB, 4656 MB goal, 40 P
gc 47 @34.435s 4%: 0.15+198+0.89 ms clock, 1.3+2896/1938/1438+8.0 ms cpu, 4897->4931->2677 MB, 5022 MB goal, 40 P
gc 48 @36.732s 4%: 0.18+211+1.0 ms clock, 1.7+3604/2075/872+9.2 ms cpu, 5220->5256->2858 MB, 5354 MB goal, 40 P
gc 49 @39.268s 4%: 0.15+208+0.85 ms clock, 1.2+3429/2077/1169+6.8 ms cpu, 5574->5613->3049 MB, 5716 MB goal, 40 P
gc 50 @41.963s 4%: 0.14+229+1.1 ms clock, 1.6+3687/2286/1274+12 ms cpu, 5945->5986->3265 MB, 6098 MB goal, 40 P
gc 51 @44.954s 4%: 0.38+253+0.98 ms clock, 9.1+3334/2531/2324+23 ms cpu, 6366->6409->3500 MB, 6530 MB goal, 40 P
gc 52 @48.229s 4%: 0.18+301+1.2 ms clock, 1.6+5171/2999/1391+11 ms cpu, 6825->6874->3763 MB, 7000 MB goal, 40 P
gc 53 @51.833s 4%: 0.15+340+1.0 ms clock, 1.4+5239/3389/2211+9.5 ms cpu, 7339->7392->4042 MB, 7527 MB goal, 40 P
gc 54 @55.672s 4%: 0.16+380+1.0 ms clock, 1.4+5925/3791/2477+9.5 ms cpu, 7882->7939->4338 MB, 8084 MB goal, 40 P
gc 55 @59.723s 5%: 0.17+394+0.80 ms clock, 1.7+6988/3939/2153+8.0 ms cpu, 8459->8520->4647 MB, 8676 MB goal, 40 P
gc 56 @64.025s 5%: 0.18+0+644 ms clock, 1.8+6988/3939/2153+6446 ms cpu, 9006->9006->4898 MB, 9006 MB goal, 40 P (forced)
gc 57 @68.819s 5%: 0.082+426+1.0 ms clock, 1.8+7977/4257/1957+24 ms cpu, 9551->9604->5266 MB, 9796 MB goal, 40 P
gc 58 @73.605s 5%: 0.14+450+0.85 ms clock, 1.3+6836/4484/3281+7.7 ms cpu, 10269->10344->5637 MB, 10532 MB goal, 40 P
gc 59 @75.595s 6%: 0.15+0+588 ms clock, 4.8+6836/4484/3281+18818 ms cpu, 7581->7581->5705 MB, 7581 MB goal, 40 P (forced)
gc 60 @81.107s 6%: 0.26+477+0.86 ms clock, 2.3+8641/4774/2425+7.8 ms cpu, 11126->11190->6147 MB, 11411 MB goal, 40 P
gc 61 @86.889s 6%: 0.22+522+0.96 ms clock, 1.7+8098/5215/3963+7.7 ms cpu, 11988->12074->6605 MB, 12295 MB goal, 40 P
gc 62 @93.185s 6%: 0.20+600+0.98 ms clock, 1.8+10098/5995/3617+8.8 ms cpu, 12879->12975->7093 MB, 13210 MB goal, 40 P
gc 63 @100.127s 6%: 0.71+684+0.94 ms clock, 7.8+11351/6836/4322+10 ms cpu, 13832->13937->7627 MB, 14187 MB goal, 40 P
gc 64 @107.592s 6%: 0.15+760+1.1 ms clock, 1.4+12778/7592/4697+10 ms cpu, 14873->14986->8186 MB, 15254 MB goal, 40 P
gc 65 @115.488s 6%: 0.14+838+1.1 ms clock, 2.6+13070/8376/5952+19 ms cpu, 15964->16087->8779 MB, 16373 MB goal, 40 P
gc 66 @123.875s 6%: 0.19+870+1.1 ms clock, 1.7+13812/8699/6428+10 ms cpu, 17120->17251->9385 MB, 17559 MB goal, 40 P
gc 67 @132.692s 6%: 0.23+908+1.0 ms clock, 2.0+13867/9076/6879+9.2 ms cpu, 18301->18440->10017 MB, 18771 MB goal, 40 P
gc 68 @141.986s 6%: 0.21+943+0.90 ms clock, 2.1+15513/9425/6103+9.0 ms cpu, 19534->19681->10700 MB, 20035 MB goal, 40 P
gc 69 @152.183s 6%: 0.98+994+1.0 ms clock, 7.8+16252/9939/6191+8.6 ms cpu, 20865->21021->11430 MB, 21400 MB goal, 40 P
gc 70 @163.113s 6%: 0.16+1072+0.97 ms clock, 1.4+16385/10716/7800+8.7 ms cpu, 22289->22456->12233 MB, 22860 MB goal, 40 P
gc 71 @174.825s 6%: 0.15+1189+1.0 ms clock, 1.5+18064/11891/8555+10 ms cpu, 23854->24034->13134 MB, 24466 MB goal, 40 P
gc 72 @187.784s 6%: 0.20+1300+0.95 ms clock, 2.0+20416/13004/9765+9.5 ms cpu, 25611->25807->14111 MB, 26268 MB goal, 40 P
gc 73 @201.840s 6%: 0.18+1480+1.1 ms clock, 1.6+21708/14802/12639+10 ms cpu, 27518->27729->15164 MB, 28223 MB goal, 40 P
gc 74 @216.824s 6%: 1.2+1658+0.97 ms clock, 9.6+25467/16581/12611+7.7 ms cpu, 29571->29801->16283 MB, 30329 MB goal, 40 P
gc 75 @232.919s 6%: 0.22+1776+1.0 ms clock, 2.0+27884/17758/13280+9.7 ms cpu, 31753->31999->17430 MB, 32567 MB goal, 40 P
gc 76 @249.894s 6%: 0.20+1867+1.1 ms clock, 1.8+29144/18664/14436+9.9 ms cpu, 33989->34251->18641 MB, 34861 MB goal, 40 P
gc 77 @267.846s 6%: 0.24+1939+1.2 ms clock, 2.1+30795/19392/14116+11 ms cpu, 36350->36627->19883 MB, 37282 MB goal, 40 P
gc 78 @286.855s 6%: 0.062+2008+1.1 ms clock, 1.9+32958/20077/13490+37 ms cpu, 38772->39065->21211 MB, 39766 MB goal, 40 P
gc 79 @307.403s 6%: 0.22+2081+1.1 ms clock, 2.0+32514/20814/15847+10 ms cpu, 41362->41673->22696 MB, 42423 MB goal, 40 P
gc 80 @327.541s 6%: 0.14+2047+1.1 ms clock, 1.1+34404/20472/12886+9.4 ms cpu, 44257->44577->22703 MB, 45392 MB goal, 40 P
gc 81 @332.510s 7%: 0.46+0+2448 ms clock, 12+34404/20472/12886+66105 ms cpu, 26518->26518->22377 MB, 26518 MB goal, 40 P (forced)
gc 82 @352.715s 7%: 0.54+1960+1.2 ms clock, 4.9+38039/19601/9184+11 ms cpu, 43637->43891->22633 MB, 44755 MB goal, 40 P
gc 83 @371.353s 7%: 0.42+1991+1.1 ms clock, 3.8+32692/19909/13747+10 ms cpu, 44134->44469->22637 MB, 45266 MB goal, 40 P
gc 84 @378.478s 7%: 0.39+0+2595 ms clock, 3.5+32692/19909/13747+23362 ms cpu, 29596->29596->22313 MB, 29596 MB goal, 40 P (forced)
gc 85 @397.356s 7%: 0.40+1916+1.2 ms clock, 3.6+33428/19160/13324+10 ms cpu, 43512->43774->22521 MB, 44627 MB goal, 40 P
gc 86 @415.144s 7%: 0.36+2190+2.6 ms clock, 2.9+33125/21904/10777+21 ms cpu, 43917->44270->22599 MB, 45043 MB goal, 40 P
gc 87 @432.327s 7%: 0.47+1950+1.1 ms clock, 4.2+32376/19490/12770+10 ms cpu, 44069->44428->22559 MB, 45199 MB goal, 40 P
gc 88 @448.837s 7%: 0.35+1930+1.1 ms clock, 11+35219/19301/9008+35 ms cpu, 43991->44357->22625 MB, 45119 MB goal, 40 P
gc 89 @465.169s 7%: 0.47+1932+1.0 ms clock, 4.7+36112/19322/7974+10 ms cpu, 44118->44490->22650 MB, 45250 MB goal, 40 P
gc 90 @480.826s 7%: 0.80+1890+1.1 ms clock, 8.0+34525/18898/8574+11 ms cpu, 44168->44545->22675 MB, 45300 MB goal, 40 P
gc 91 @496.337s 7%: 0.57+1887+1.1 ms clock, 5.7+33143/18867/10430+11 ms cpu, 44217->44602->22835 MB, 45350 MB goal, 40 P
gc 92 @510.959s 7%: 0.43+1915+1.1 ms clock, 4.3+35319/19150/8385+11 ms cpu, 44529->44922->22977 MB, 45670 MB goal, 40 P
gc 93 @525.947s 7%: 0.44+1933+1.1 ms clock, 4.9+33138/19327/11548+13 ms cpu, 44806->45206->23199 MB, 45955 MB goal, 40 P
gc 94 @540.676s 7%: 0.42+1936+1.2 ms clock, 4.6+33285/19357/11308+13 ms cpu, 45238->45654->23522 MB, 46398 MB goal, 40 P
gc 95 @556.581s 7%: 0.32+1906+1.1 ms clock, 10+29314/19052/14546+35 ms cpu, 45868->46312->24180 MB, 47045 MB goal, 40 P
gc 96 @572.110s 7%: 0.42+1878+1.1 ms clock, 13+22568/18785/20358+36 ms cpu, 47151->47602->24269 MB, 48360 MB goal, 40 P
gc 97 @587.830s 7%: 0.49+1827+1.2 ms clock, 4.9+20290/18273/20787+12 ms cpu, 47326->47778->24267 MB, 48539 MB goal, 40 P
gc 98 @602.741s 7%: 0.52+4370+1.8 ms clock, 4.6+755/43677/0+16 ms cpu, 47320->47560->24138 MB, 48534 MB goal, 40 P
gc 99 @609.616s 7%: 0.39+0+2175 ms clock, 3.9+755/43677/0+21754 ms cpu, 25981->25981->23901 MB, 25981 MB goal, 40 P (forced)
gc 100 @626.925s 7%: 0.33+1655+1.2 ms clock, 9.6+22311/16550/17933+35 ms cpu, 46607->46937->24212 MB, 47802 MB goal, 40 P
gc 101 @631.924s 8%: 0.37+0+2341 ms clock, 3.3+22311/16550/17933+21070 ms cpu, 30305->30305->23880 MB, 30305 MB goal, 40 P (forced)
gc 102 @646.647s 8%: 0.46+1620+1.1 ms clock, 4.1+23844/16187/15629+10 ms cpu, 46567->46891->24191 MB, 47761 MB goal, 40 P
gc 103 @661.356s 8%: 0.42+1684+1.1 ms clock, 3.7+19858/16821/18350+9.9 ms cpu, 47173->47631->24302 MB, 48382 MB goal, 40 P
gc 104 @676.780s 8%: 0.38+0+2771 ms clock, 3.8+19858/16821/18350+27716 ms cpu, 47006->47006->23882 MB, 47006 MB goal, 40 P (forced)
gc 105 @692.904s 8%: 0.46+1561+1.0 ms clock, 4.6+23200/15567/14917+10 ms cpu, 46571->46900->24146 MB, 47765 MB goal, 40 P
gc 106 @707.653s 7%: 0.26+1611+1.1 ms clock, 8.4+16782/16078/20007+35 ms cpu, 47086->47544->24193 MB, 48293 MB goal, 40 P
gc 107 @724.326s 7%: 0.48+1384+1.0 ms clock, 4.8+7469/13789/23380+10 ms cpu, 47177->47588->22868 MB, 48386 MB goal, 40 P
gc 108 @761.567s 7%: 0.31+0+2136 ms clock, 9.9+7469/13789/23380+68371 ms cpu, 30527->30527->22183 MB, 30527 MB goal, 40 P (forced)
gc 109 @794.249s 7%: 0.29+0+1678 ms clock, 9.3+7469/13789/23380+53722 ms cpu, 24338->24338->22183 MB, 24338 MB goal, 40 P (forced)
gc 110 @810.190s 7%: 0.49+0+1729 ms clock, 15+7469/13789/23380+55357 ms cpu, 23115->23115->22183 MB, 23115 MB goal, 40 P (forced)
gc 111 @930.292s 7%: 0.19+0+2100 ms clock, 6.2+7469/13789/23380+67225 ms cpu, 30635->30635->22184 MB, 30635 MB goal, 40 P (forced)
gc 112 @976.647s 6%: 0.14+0+1692 ms clock, 4.5+7469/13789/23380+54161 ms cpu, 25466->25466->22189 MB, 25466 MB goal, 40 P (forced)
Tried out gctrace=2 and force scavenger:
gc 119 @1483.234s 9%: 0.78+0+3421 ms clock, 25+30/11050/31875+109489 ms cpu, 27931->27931->22194 MB, 27931 MB goal, 40 P (forced)
scvg-1: 5852 MB released
scvg-1: inuse: 33906, idle: 13640, sys: 47547, released: 13640, consumed: 33906 (MB)
HeapProfile:
https://raw.githubusercontent.com/t3rm1n4l/misc-tools/master/debug_junk/h.svg
http/debug/pprof/heap?debug=1
https://github.com/t3rm1n4l/misc-tools/blob/master/debug_junk/h.hprof
Ref:
https://groups.google.com/forum/#!topic/golang-nuts/ts_UKImP_b0