Configuring Advanced Java System Settings

  1. In the Silk Performer menu, click Settings > System .
  2. Click the Java icon. The General page opens.
  3. Click the Advanced tab.
  4. In the Command line options field, enter any command line options that are to be passed to the Java Virtual Machine. Some Java classes require specific Virtual Machine options to run successfully. Tuning parameters may also be specified in VM parameters.
  5. Click the open folder icon to the right of the JVM dll field to navigate to the Dynamic Link Library (.dll) that implements the Java Virtual Machine that is to be used.
  6. Select the Disable JIT compiler check box if you want to disable the Just In Time (JIT) compiler of the Java Virtual Machine. The JIT compiler can be disabled when required and non-standard VM DLLs can be specified.
  7. Check the Use system classpath check box to ensure that the system classpath is used.
  8. Select 32-bit Java (default) or 64-bit Java.
  9. If you use 64-bit Java, specify an Execution timeout for the communication between the Silk Performer runtime and the JVM.
  10. Click OK to save your settings.
The specified Java architecture determines whether your Java test code is running in-process or out of process. This results in the following behavior:
  • 32-bit Java is enabled: When you execute a test, the jvm.dll and the required .jar files are loaded dynamically into the perfrun.exe. Note that this increases the memory usage of the perfrun.exe. Also be aware that during the early phase of a load test, the memory usage might be volatile. This can be misunderstood as a memory leak, but is in fact expected due to the Java garbage collector at work. By default, up to 50 virtual users share the same JVM, which helps reduce memory usage. However, this feature requires that your Java test code is thread-save (especially the static variables).
  • 64-bit Java is enabled: When you execute a test, the Java test code is running in a separate process - it is not loaded into the perfrun.exe.

You can also use the BDL function JavaSetOption to switch between 32-bit and 64-bit Java. Note that the settings defined in the BDL script override the options defined in the profile settings.