The connector that I'm working on started having this issue recently with System.OutOfMemoryException
All the code does is parse an XML response using the Linq XDocument.
Here are the server specs
Running dataminer (10.3.11.0-13456)
Hi Geovanni,
Without more context or seeing code it's difficult to say what could be causing the out of memory exception.
Are objects being added to collections (list, dictionary, ...)? If that's the case make sure they are not endlessly growing.
The SLScripting process is also being shared by other elements on the same DMA, so it could be that the problem is actually caused by another element that takes almost all memory. Parsing a bigger amount of data in your connector could then cause the OutOfMemoryException in your connector.
To investigate this further you could take a memory dump of the process. With specific tools it's then possible to see what exactly is being stored in memory.