Sunday, June 16, 2013

Index server Content size for 09xxxxxxxxx id: 06xxxxxxxxxx exceeds limit of 20000000 skipping content

Cause

It appears that the parameter contentSizeLimit of the indexagent.xml configuration file was not taken in consideration in version 5.3 SPx as no warnings were thrown when indexing files larger than 20 MB.

The parameter contentSizeLimit is set to 20000000 by default in index server



<parameter>
<parameter_name>contentSizeLimit</parameter_name>
<parameter_value>20000000</parameter_value>
</parameter>



Resolution

After changing the contentSizeLimit to unlimited (0) files larger than 20 MB will get indexed


<parameter>
<parameter_name>contentSizeLimit</parameter_name>
<parameter_value>0</parameter_value>
</parameter>

file path :  /Xplore1.1/jboss4.3.0/server/DctmServer_Indexagent/deploy/IndexAgent.war/WEB-INF/classes/ indexagent.xml

No comments:

Post a Comment