The maximum number of index requests that are produced by this index job that are allowed to be outstanding (in progress or waiting) at any time.

Maintaining a limit on index requests for an index job can prevent large index jobs from causing performance problems. This index request limit applies only to the number of index requests for the index job that exists in the IndexRequests table; it is not a limit on the total number of index requests that an index job can create.

The default value is 100,000 and the minimum value is 1000. To impose no limits on outstanding index requests, set this property to -1.

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

ToggleSyntax

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

ToggleRemarks

ToggleSee Also