The priority for changing this index area from a standby index area to an open index area. The higher the value of this property, the lower the priority. The highest priority is 0, which is the default value.

When an open index area becomes full, the Content Engine server chooses the standby index area with the highest priority and sets it to open. If two or more index areas exist with the same priority, one of these standby index areas is chosen randomly by the server.

You can control this feature by setting the JVM parameter com.filenet.engine.cbr.LegacyStandbyActivationPolicy on your application server. By default, this JVM parameter is false, which instructs the Content Engine server to open a standby index area when an index area becomes full. Set this JVM parameter to true to instruct the Content Engine server to open a standby index area only when all the index areas are either full or closed. For information about how to assign JVM parameter values for your application server, see Setting JVM parameters.

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

ToggleSyntax

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

ToggleRemarks

ToggleSee Also