Click or drag to resize

DocumentTaskSettingsRequeueLargeContainersAsOwnTask Property

If true, "large" (defined by RequeueLargeContainerSizeCriteria) archive and mail store containers found in DocumentTaskSettings input documents (Documents) don't have their container items extracted but get their Result property set to RequeueAsSeparateTask and are not processed further.

Namespace: OpenDiscoverSDK.Interfaces.Platform.Settings
Assembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2025.4.4.0 (2025.4.4)
Syntax
C#
[DataMemberAttribute]
public bool RequeueLargeContainersAsOwnTask { get; set; }

Property Value

Boolean
Remarks

For ProcessingTaskType set to SingleArchive or SingleMailStore, this property and RequeueLargeContainerSizeCriteria are ignored on the single input document ProcessingType but are applied to any container children that meet the criteria.

Setting this property to true allows naive batching of documents in a DocumentTaskSettings task. If there are "large" containers among the input files of the batch (defined by Documents), then they will get file format identified, hashed, and marked for requeue as their own task.

This property and RequeueLargeContainerSizeCriteria help prevent one Platform worker from getting too much work, work that should be distributed better.

See Also