You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assuming you have 32g main memory. Adjust if you have less. Results unpredictable with < 8g unless you reduce buffer pool requirements via the BigSack class:
com/neocoretechs/bigsack/DBPhysicalConstants.java
/**
* We can change the following constants dynamically, after DB creation, if necessary.
*
* The number of blocks (pages) per tablespace.
*/
public static int DBUCKETS = 1024;
The text was updated successfully, but these errors were encountered:
Default buffer pool and memory requirements necessitate running in > 4g address space. The proper JVM args will look something like:
java -server -XX:+UseParallelGC -Xmn10g -Xms26g -Xmx26g -cp \lib\Relatrix.jar;\lib\BigSack.jar com.neocoretechs.relatrix.server.RelatrixServer <tablespace root directory/database>
Assuming you have 32g main memory. Adjust if you have less. Results unpredictable with < 8g unless you reduce buffer pool requirements via the BigSack class:
com/neocoretechs/bigsack/DBPhysicalConstants.java
/**
* We can change the following constants dynamically, after DB creation, if necessary.
*
* The number of blocks (pages) per tablespace.
*/
public static int DBUCKETS = 1024;
The text was updated successfully, but these errors were encountered: