Sorry for the delay, lots to sift through (way more and a minute or two) and I wanted to discuss it with another dev.
The fact that it dies during an RSS Sync is a symptom, not the problem itself, it just happens to be the time when memory is allocated and it becomes too much for the process. We had a few theories we tested out, but they didn’t appear tot be the cause.
We’re going to need to capture a memory dump when Sonarr is running to see what information it can give us:
- You’ll need to get procdump from here: https://technet.microsoft.com/en-ca/sysinternals/dd996900.aspx
- Extract the zip file
- Open a command prompt to the folder where the zip was extracted
- Get the process ID of Sonarr (Task manager will show you if the PID column is visible or use
tasklistfrom a command prompt) - Run
procdump -m 1000 -ma [PID]where[PID]is the actual PID - Wait for the procdump to complete (which will take as long as it takes to hit 1GB of memory used)
Make sure you disable your automatic restart so Sonarr has time to build up to 1GB of memory used.
Once you have the file zip it up and PM me a link to download it (dropbox should work well for it).