123456789101112131415161718 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- BI and PM: CM
- (C) Copyright IBM Corp. 2015, 2018
- US Government Users Restricted Rights - Use, duplication or disclosure
- restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <backgroundTask name="indexTask" taskHandler="com.cognos.cm.backgroundTask.GenericTaskHandler" runType="RUN_ONCE" taskAction="com.cognos.cm.search.indexing.IndexingTaskAction" 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>
- <maxItemsToHandlePerTransaction>1000</maxItemsToHandlePerTransaction>
- <maxClassesToHandlePerBatch>10</maxClassesToHandlePerBatch>
- </runOptions>
- </backgroundTask>
|