 | MultiPartitionRecordReaderTAllowAdditionalPartitions Property |
Gets or sets a value indicating whether the task may request additional partitions from the job server if it finishes the current ones.
Namespace: Ookii.Jumbo.JetAssembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic bool AllowAdditionalPartitions { get; set; }
Public Property AllowAdditionalPartitions As Boolean
Get
Set
public:
property bool AllowAdditionalPartitions {
bool get ();
void set (bool value);
}
member AllowAdditionalPartitions : bool with get, set
Property Value
Boolean if getting additional partitions is allowed; otherwise,
. The default value is
.
Remarks
A task can set this property to to prevent the task from requesting additional partitions.
If this property is , and a call to ReadRecord returned , you
may change this property to and attempt the call to ReadRecord again.
Note that if this stage doesn't use multiple partitions per task or if dynamic partition assignment was disabled a
task will never get additional partitions even if this property is .
See Also