CreateJobParameters Constructors
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.
Overloads
CreateJobParameters() |
Initializes a new instance of the CreateJobParameters class. |
CreateJobParameters(JobType, CreateJobProperties, String, Nullable<Int32>, Nullable<Double>, Nullable<Int32>, IList<String>, JobRelationshipProperties) |
Initializes a new instance of the CreateJobParameters class. |
CreateJobParameters()
Initializes a new instance of the CreateJobParameters class.
public CreateJobParameters ();
Public Sub New ()
Applies to
CreateJobParameters(JobType, CreateJobProperties, String, Nullable<Int32>, Nullable<Double>, Nullable<Int32>, IList<String>, JobRelationshipProperties)
Initializes a new instance of the CreateJobParameters class.
public CreateJobParameters (Microsoft.Azure.Management.DataLake.Analytics.Models.JobType type, Microsoft.Azure.Management.DataLake.Analytics.Models.CreateJobProperties properties, string name, int? degreeOfParallelism = default, double? degreeOfParallelismPercent = default, int? priority = default, System.Collections.Generic.IList<string> logFilePatterns = default, Microsoft.Azure.Management.DataLake.Analytics.Models.JobRelationshipProperties related = default);
new Microsoft.Azure.Management.DataLake.Analytics.Models.CreateJobParameters : Microsoft.Azure.Management.DataLake.Analytics.Models.JobType * Microsoft.Azure.Management.DataLake.Analytics.Models.CreateJobProperties * string * Nullable<int> * Nullable<double> * Nullable<int> * System.Collections.Generic.IList<string> * Microsoft.Azure.Management.DataLake.Analytics.Models.JobRelationshipProperties -> Microsoft.Azure.Management.DataLake.Analytics.Models.CreateJobParameters
Public Sub New (type As JobType, properties As CreateJobProperties, name As String, Optional degreeOfParallelism As Nullable(Of Integer) = Nothing, Optional degreeOfParallelismPercent As Nullable(Of Double) = Nothing, Optional priority As Nullable(Of Integer) = Nothing, Optional logFilePatterns As IList(Of String) = Nothing, Optional related As JobRelationshipProperties = Nothing)
Parameters
- type
- JobType
The job type of the current job (Hive, USql, or Scope (for internal use only)). Possible values include: 'USql', 'Hive', 'Scope'
- properties
- CreateJobProperties
The job specific properties.
- name
- String
The friendly name of the job to submit.
The degree of parallelism to use for this job. At most one of degreeOfParallelism and degreeOfParallelismPercent should be specified. If none, a default value of 1 will be used for degreeOfParallelism.
the degree of parallelism in percentage used for this job. At most one of degreeOfParallelism and degreeOfParallelismPercent should be specified. If none, a default value of 1 will be used for degreeOfParallelism.
The priority value to use for the current job. Lower numbers have a higher priority. By default, a job has a priority of 1000. This must be greater than 0.
The list of log file name patterns to find in the logFolder. '' is the only matching character allowed. Example format: jobExecution.log or mylog.txt
- related
- JobRelationshipProperties
The recurring job relationship information properties.
Applies to
Azure SDK for .NET