Categories

Versions

You are viewing the RapidMiner Legacy documentation for version 9.9 -Check here for latest version

Best Practices for JBoss configuration

This page gives a short overview over some of the settings which can be adjusted to fit your usage. Under each settings you find recommended values for RapidMiner Server installations on your local machineLocalon a dedicated serverDefaultand for high load scenariosBig. The following settings are done inside thestandalone.xmllocated in theconfigurationfolder of your RapidMiner Serverhome directory. You've selected the home directory during the installation process. The home folder's location typically depends on the machine's user with whom you've installed RapidMiner Server (for exampleC:\Users\TestUser\rapidminer-server\rapidminer-server-home\configuration\standalone.xml).

Database pooling

min-pool-size

The 'min-pool-size' defines the minimum amount of connections that should always be kept open. This reduces the response time but also allocate resources even if RapidMiner Server is not used.

Local 0 Default 5 Big 50

max-pool-size

The 'max-pool-size' defines an upper limit of open database connections. Higher values might require adjustments to themax_connectionssetting of your database.

Local 20 Default 50 Big 90+

Statement Caching

prepared-statement-cache-size

The number of prepared statements that should be kept in cache. This parameter should only be used in combination with a highmin-pool-sizevalue. Setting this value to 100 increases the throughput, but will consume additional RAM for the cache.

Local 0 Default 0 Big 100

share-prepared-statements

Allows to reuse a prepared statement inside a transaction.

当地的假 Default false Big true

Session Beans

Access Timeout

While not required for normal usage you can increase the 'default-access-timeout' of both stateful and singleton beans to better survive overload peaks.

 

Local 5000 Default 5000 Big 30000

Pool sizes

Increase the stateless bean pool size to aboutNumber of CPU cores/ 8 * 20on machines with more than 8 logical cores.

   

Local 20 Default 20 BigNumber of CPU cores/ 8 * 20

Logging

Reduce the log level

The available log levels are FATAL, ERROR, WARN, INFO, DEBUG and TRACE.

Change the value from INFO to WARN for the console log handler.

 

Add the log level tag to the server.log handler.

 

Local INFO Default INFO Big WARN

Disable console logging

Turn off console logging by removing the linefrom the root-logger handlers section to reduce unnecessary I/O operations.

Local enabled Default enabled Big disabled

Deployment scanner

Since the deployment scanner is only needed on startup thescan-intervalcan be set to an integer value smaller 1.

  

Local 0 Default 5000 Big 0

JDBC driver

MS SQL Unicode performance

MS SQL Server offers different data types to store string values:char,varchar, andtext. If you want to store unicode data the following types should be used instead:nchar,nvarcharandntext. By default, the MS SQL JDBC driver will send all string data in the unicode format. This behavior will lead to performance issues if the underlying data type of the MS SQL server is not using an unicode data type as the MS SQL Server needs to convert the corresponding values. If you are not using unicode data types within the RapidMiner Server DB, you should deactivate the unicode format in the JDBC driver by adding the following prefix to the JDBC URL:sendStringParametersAsUnicode=false

<连接url > jdbc:状态"置疑":/ / localhost: 1433;哒tabaseName=master;SelectMethod=cursor;sendStringParametersAsUnicode=false

The following SQL Query can be used to identify unicode data columns:

SELECT TABLE_NAME, COLUMN_NAME, DATA_TYPE FROM INFORMATION_SCHEMA.COLUMNS WHERE DATA_TYPE = 'nchar' OR DATA_TYPE = 'nvarchar' OR DATA_TYPE = 'ntext'