Configure the widget life-cycle retry schedule 

Communities uses the IBM WAS 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 starting

To edit configuration files, use the WAS wsadmin client. See Starting the wsadmin client for details.


About this task

To configure the widget life-cycle retry schedule, edit settings in the communities-config.xml file. You can define the interval at which the task runs and specify when the scheduler starts the task. The interval property is configured with a Cron schedule. For more information about the WAS scheduler and the Cron schedule, see Scheduling tasks.


Procedure

To configure the LifecycleRetryQueuedEvents task...

  1. From the dmgr host:

      cd $DMGR_PROFILE/bin
      ./wsadmin.sh -jython
      execfile("communitiesAdmin.py")

      If prompted to specify a service to connect to, type 1 to pick the first node in the list. Most commands can run on any node. If the command writes or reads information to or from a file using a local file path, pick the node where the file is stored.

  2. Check out the Communities configuration files using the following command:

      CommunitiesConfigService.checkOutConfig("<working_directory>", "<cell_name>")

      where:

      • <working_directory> is the temporary working directory to which the configuration XML and XSD files are copied. The files are kept in this working directory while you make changes to them.

          Note: AIX and Linux only: The directory must grant write permissions or the command will not run successfully.

      • <cell_name> is the name of the WAS cell hosting the IBM Connections application. This argument is required. If you do not know the cell name, you can determine it by typing the following command in the wsadmin command processor:

          print AdminControl.getCell()

      For example:

      CommunitiesConfigService.checkOutConfig("/opt/my_temp_dir", "CommServerNode01Cell")

  • 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.

      The following table displays the LifecycleRetryQueuedEvents properties that can be updated, and additional information regarding each property and the type of data that you can enter.

      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, check the configuration files back in, and do so during the same wsadmin session in which you checked them out for the changes to take effect. See Apply property changes in Communities for information about how to save and apply your changes.


    Parent topic

    Administer widgets and remote applications

    Related concepts
    Scheduling tasks


    Related tasks


    Apply property changes in Communities


       

     

    });

    +

    Search Tips   |   Advanced Search