Re: [go-nuts] IO memory issue in golang

2018-11-04 Thread Robert Engels
It would appear you have a slow memory leak. I would examine the process memory usage every 30 minutes to see if it is growing... then find your memory leak using a heap examination tool. Sent from my iPhone > On Nov 4, 2018, at 11:22 AM, Aditya Giri wrote: > > fatal error: runtime: out of m

Re: [go-nuts] IO memory issue in golang

2018-11-04 Thread Aditya Giri
fatal error: runtime: out of memory message='' runtime stack: runtime.throw(0x19e73ac, 0x16) golang/go/src/runtime/panic.go:605 +0x95 fp=0x7f47a4aa5c10 sp=0x7f47a4aa5bf0 pc=0x42d815 runtime.sysMap(0xc78d0a, 0x59, 0x6d3400, 0x27e2538) golang/go/src/runtime/mem_linux.go:216 +0x1d0 fp=0x7f

Re: [go-nuts] IO memory issue in golang

2018-11-04 Thread Robert Engels
Where is the panic listing? Sent from my iPhone > On Nov 4, 2018, at 2:28 AM, Aditya Giri wrote: > > I have 3 crons running in my application in production. 1st cron fetched > around 10k data and started to process. While the second cron tried to fetch > data and process it, IO memory issue o