Configuring the widget life-cycle retry schedule
Communities uses the IBM® WebSphere® Application Server scheduler to run a scheduled task that processes events in the widget life-cycle event queue. You can configure the frequency with which this task runs by editing settings in the communities-config.xml file.
Before you begin
To edit configuration files, you must use the WebSphere® Application Server wsadmin client. See Starting the wsadmin client for details.
About this task
Procedure
- Start the wsadmin client from the following
directory of the system on which you installed the Deployment Manager:
where app_server_root is the WebSphere® Application Server installation directory and dm_profile_root is the Deployment Manager profile directory, typically dmgr01.app_server_root\profiles\dm_profile_root\bin
You must start the client from this directory or subsequent commands that you enter do not execute correctly.
- Start the Communities Jython script interpreter.
- To view the current
configuration settings, use the following
command:
CommunitiesConfigService.showConfig()
Note: After updating any of the configuration settings, you can use this command again to display your updates. - To change
display settings for Communities, use the following
command:
CommunitiesConfigService.updateConfig("property", "value")
where:- property is one of the editable Communities configuration properties.
- value is the new value with which you want to set that property.
Table 1. LifecycleRetryQueuedEvents properties Property Description task.LifecycleRetryQueuedEvents.enabled Enables or disables the life-cycle retry queued events task. This property accepts the following values: true or false.
For example:CommunitiesConfigService.updateConfig("task.LifecycleRetryQueuedEvents.enabled", "true")
task.LifecycleRetryQueuedEvents.interval Specifies the interval at which the life-cycle retry queued events task runs. This property is specified in Cron format. For more information about using the Cron format, see Scheduling tasks.
When you change the interval property, the new schedule is registered the next time that Communities is started on any server in the Communities cluster (if there is one).
For example:CommunitiesConfigService.updateConfig("task.LifecycleRetryQueuedEvents.interval", "0 1 0-23/1 ? * *")
- After making changes, you must check the configuration files back in, and you must do so during the same wsadmin session in which you checked them out for the changes to take effect. See Applying property changes in Communities for information about how to save and apply your changes.