Hello,
A small clarification. The note referred above 723909, does not restrict the size of heap you use for the JVM. It just suggests values which were tested at SAP and have proven to be enough for good performance.
The reason why big heaps (4g for example) are not recommended is that the bigger the heap the longer it takes for the garbage collector to run through it. So there is a trade off between less gc-s in the beginning when the JVM is started and much longer ones, when the heap is for example half full.
On the other hand if you add more server nodes you can scale more easily and serve a larger number of users, plus you can utilize better the cpu and other resources of the machine.
In short, if the JVM and the OS support such a big heap, then you can run the engine with it, but this is not recommended as you will not get the optimal performance.
Best Regards, Myriana
Add a comment