123456789101112131415161718 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- BI and PM: CM
- (C) Copyright IBM Corp. 2018
- US Government Users Restricted Rights - Use, duplication or disclosure
- restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <backgroundTask name="crawlerTask" taskHandler="com.cognos.cm.search.indexing.crawler.CrawlerTaskHandler" runType="FIXED_DELAY" restartInMinutes="10" taskAction="com.cognos.cm.search.indexing.crawler.CrawlerTaskAction" reportHandler="com.cognos.cm.backgroundTask.DefaultBackgroundTaskReporterHandler" metricsHandler="com.cognos.cm.search.indexing.IndexingTaskMetricsHandler" explicitStartOnly="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="backgroundTask.xsd">
- <runOptions>
- <queueName>indexQueue</queueName>
- <numOfCmObjectsPerCheck>500</numOfCmObjectsPerCheck>
- <throttlingDelayInMillis>5000</throttlingDelayInMillis>
- </runOptions>
- </backgroundTask>
|