System configuration

Introduction

In this section, you will find:

  • how to adjust your system to get the best of Petals ESB,
  • and how to adjust Petals ESB to your system.
Contributors
No contributors found for: authors on selected page(s)

Adjusting your system

Adjusting your system is required only for a production usage to get the best performances and scalability. First, see the system requirements

TODO:

  • no backup is needed, but RAID5 for filesystem storing Petals data,
  • configuration files have not to be manually written,
  • separated filesystem for log files:
    • to avoid empty file system error when dumping payload content,
    • select an efficient journaling filesystem to write small files to store MONIT log files and payload dumps,
    • select an efficient journaling filesystem to write big files to store the global log file.

Adjusting Petals ESB to your system

Several system parameters can be set to the Java virtual machine running Petals ESB. These parameters must be set in the environment file, ie. $PETALS_HOME/conf/env.sh|bat:

# JVM memory sizing
PETALS_JAVA_OPTS="$PETALS_JAVA_OPTS -Xmx1024m -XX:MaxPermSize=256m"

...
If Petals ESB was installed using Debian packages, the environement file is defined by the property 'petals.environment.config.file' of the local container configuration, ie. server.properties. The default value of the property is /etc/petals-esb/default-env.sh.
  1. if not defined, the file.

By default, Petals ESB comes with the following adjustments:

  • JVM heap size: 1Go,
  • JVM perm size: 256Mo,
  • TCP/IP v4 is used preferentially, instead of TCP/IP v6.

Adapting Petals ESB to the IP Network Stack

On some machine, the network IPv4/IPv6 dual-stack is available.
It may be enabled, even if the network is configured to be an IPv4 network.

Besides, by default, the JVM uses IPv6 if it is available.
In this case, for performances reasons, the Petals ESB startup script forces the usage of the IPv4 stack.

If your network is a full IPv6 network, you must update the environnement configuratin file, ie. $PETALS_HOME/conf/env.sh|bat, and remove the option -Djava.net.preferIPv4Stack=true or set it to false.

# If TCP/IPv4 and TCP/IPv6 are available on the host, we prefer TCP/IPv4
PETALS_JAVA_OPTS="$PETALS_JAVA_OPTS -Djava.net.preferIPv4Stack=false"
More information on network properties of the JVM can be found on Oracle's web site.
Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.