Like what you see? Have a play with our trial version.

Error rendering macro 'rw-search'

null

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • A node may be configured to become Master but never a Slave. To do this, do not include any TaskType in the ClusterManagement servlet block in web.xml.

  • A node may be configured to become a Slave but never a Master. To do this, add the following to the MIStartup servlet block in web.xml:

    Code Block
    languagexml
    
    <init-param>
            <param-name>DisableTaskScheduler</param-name>
            <param-value>TRUE</param-value>
    </init-param>
    
    


  • Web-facing nodes may be configured to never become a Master or Slave. This way, background tasks don’t compete for resources with online processing. To do this, add the following to the MIStartup Servlet block in web.xml:

    Code Block
    languagexml
    
    
    <init-param>
            <param-name>DisableTaskScheduler</param-name>
            <param-value>TRUE</param-value>
    </init-param>
    
    


...