IDTSPipeline100.EngineThreads Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the number of threads the data flow task uses.
public:
property int EngineThreads { int get(); void set(int value); };
[System.Runtime.InteropServices.DispId(125)]
public int EngineThreads { [System.Runtime.InteropServices.DispId(125)] get; [System.Runtime.InteropServices.DispId(125)] set; }
[<System.Runtime.InteropServices.DispId(125)>]
[<get: System.Runtime.InteropServices.DispId(125)>]
[<set: System.Runtime.InteropServices.DispId(125)>]
member this.EngineThreads : int with get, set
Public Property EngineThreads As Integer
Property Value
An integer that specifies the number of threads that the data flow task can use during execution.
- Attributes
Remarks
The default value for this property is 5. The value of 1 is not permitted.
This property provides a suggestion to the data flow engine about the number of threads to use. However, the engine will not use more threads than it needs, regardless of the value of this property. The engine may also use more threads than specified in this property, if necessary to avoid concurrency issues.
For more information, see Execution Plan and Buffer Allocation.
For a brief discussion of this property and related properties that can be used to optimize the performance of the Data Flow task, see the section "Improving the Performance of the Data Flow Task" in Data Flow Task.