Scheduling the cleanup of links

Set the frequency and the number of link nodes to process per transaction by changing the componize.job.cleanup_links.* parameters in the alfresco-global.properties file.

The cleanup_links parameter refers to a scheduled job that cleans up link nodes. Links without both an existing starting resource and an existing ending resource will be deleted in the process.
  1. Open the alfresco-global.properties file.
  2. To change the frequency of the links processing, modify the value of the componize.job.cleanup_links.cron parameter.
    componize.job.cleanup_links.cron=0 0 15 ? * SUN
    By default, the job runs at 3 PM every Sunday. The involved scheduler is Quartz. The notation used by Quartz allows to specify seconds, day-of-month and year.
  3. To change the number of link nodes to process per transaction, modify the value of the componize.job.cleanup_links.nodes_per_transaction parameter.
    componize.job.cleanup_links.nodes_per_transaction=${componize.job.nodes_per_transaction}
    By default, the job processes as many link nodes per transaction as set in componize.job.nodes_per_transaction. You can either replace ${componize.job.nodes_per_transaction} with a value of your choice or change the value of the componize.job.nodes_per_transaction parameter in the alfresco-global.properties file.
  4. To explicitly enable or disable this job, modify the value of the componize.job.cleanup_links.enabled parameter.
    componize.job.cleanup_links.enabled=${componize.job.enabled}

    The default value is set by the global componize.job.enabled parameter. The ${componize.job.enabled} value can be replaced by true or false.