-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Done
-
Affects Version/s: 5.2.0 GA
-
Fix Version/s: 5.2.0 GA
-
Component/s: Documentation
-
Labels:None
-
Environment:
windows 32 bit
-
Affects:Documentation (Ref Guide, User Guide, etc.), Compatibility/Configuration
-
Release Notes Text:
-
Release Notes Docs Status:Documented as Resolved Issue
We have two things to document here. One is that windows 32bit is dropped from supported configurations. The other thing to document is that to run server "production" or "all" with EDS installed on windows 32bit machine the default memory settings are too aggressive.
-Xms1303m -Xmx1303m -XX:MaxPermSize=256m
|
With 1,5G allocated memory for heap and permgen, there is only very little memory in the process' address space left for thread stack and other allocations (by default on windows half of the address space is reserved for the system). This results in an error similar to the below one:
java.lang.OutOfMemoryError: requested 842040 bytes for Chunk::new. Out of swap space?
|
To fix this, you can decrease heap or configure smaller thread stack size (e.g. -Xss128k), or try changing process space partitioning [1].
[1] http://msdn.microsoft.com/en-us/library/windows/desktop/aa366912(v=vs.85).aspx