I am running a script that needs concurrency. I have 64 GB of RAM available and I want to use it to the max. I am running my script on a server so there is not much else running. The problem is, at around 15GB I always get memory overloaded error.
I have tried:
config.set('memoryMbytes', 50_000)
config.set('availableMemoryRatio', 0.95)
Nothing seems to change this behavior. Anything else I can try?