Click or drag to resize

DocumentTaskSettingsRequeueLargeContainerSizeCriteria Property

Defines the size, in bytes, criteria for archives and mail store containers found in a DocumentTaskSettings task where they are considered too "large" for the task and should get their own task.

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

Property Value

Int64
Remarks

This property is ignored for ProcessingTaskType set to SingleArchive or SingleMailStore input documents, and is ignored for DocumentTaskSettings tasks if RequeueLargeContainersAsOwnTask property is false.

This property, and if RequeueLargeContainersAsOwnTask is true, allow naive batching of documents in sets using a DocumentTaskSettings task. If there are one or more "large" containers among the input files of the document set (defined by Documents), then they will get their file format identified, hashed, and marked for requeue (Result set to RequeueAsSeparateTask) as their own task.

This property and RequeueLargeContainersAsOwnTask help prevent one Platform worker from getting too much work, work that should be distributed across workers and or tasks that make up the whole job.

The default value of this property: 2.0 GB or 2*1024*1024*1024 bytes (Note: an container's contents can expanded to many times its compressed size).

The minimum value of this property is 250MB.

See Also