Defines the maximum number of concurrent indexing batches that can be submitted to a IBM Content Search Services server. The setting represents the configured capacity for a Content Search Services server as a whole. Therefore, the number of concurrent batches that a Content Platform Engine instance can send to the server is given by the following formula:

concurrent batches per CPE instance = (property value / CPE instances with indexing enabled)

In this calculation, CPE instances with indexing enabled includes all Content Platform Engine instances that are configured with indexing enabled. The property value is the value of the MaximumConcurrentIndexingBatches property. For example, suppose that the property value is 12 and the number of instances with indexing enabled is 2: 12 / 2 = 6 maximum concurrent indexing batches per Content Platform Engine instance.

The calculation does not take into account Content Platform Engine instances that are not running. If one of the instances stops running (because the instance is shut down, for example), the IBM Content Search Services server operates at less than the configured capacity. In the previous example, if one of the Content Platform Engines instances stops running, the remaining instance still sends a maximum of six concurrent batches. The result is that the server operates at 50% capacity. To keep IBM Content Search Services server running at full capacity, disable indexing for any Content Platform Engine instance that might not resume running soon.

Note that this property works in tandem with the ThreadCount property on the ICmTextSearchConfiguration class to control the indexing work load for a Content Platform Engine instance.

Namespace:  FileNet.Api.Admin
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Property MaximumConcurrentIndexingBatches As Nullable(Of Integer)
C#
Nullable<int> MaximumConcurrentIndexingBatches { get; set; }
Visual C++
property Nullable<int> MaximumConcurrentIndexingBatches {
	Nullable<int> get ();
	void set (Nullable<int> value);
}
JavaScript
function get_maximumConcurrentIndexingBatches();
function set_maximumConcurrentIndexingBatches(value);

ToggleRemarks

ToggleSee Also