Condividi tramite


USqlJobProperties Constructors

Definition

Overloads

USqlJobProperties()

Initializes a new instance of the USqlJobProperties class.

public USqlJobProperties();
Public Sub New ()

Applies to

USqlJobProperties(String, String, IList<JobResource>, JobStatistics, JobDataPath, IList<Diagnostics>, String, Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<TimeSpan>, String, String, Nullable<Int64>, Nullable<CompileMode>)

Initializes a new instance of the USqlJobProperties class.

public USqlJobProperties(string script, string runtimeVersion = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataLake.Analytics.Models.JobResource> resources = default, Microsoft.Azure.Management.DataLake.Analytics.Models.JobStatistics statistics = default, Microsoft.Azure.Management.DataLake.Analytics.Models.JobDataPath debugData = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataLake.Analytics.Models.Diagnostics> diagnostics = default, string algebraFilePath = default, TimeSpan? totalCompilationTime = default, TimeSpan? totalPauseTime = default, TimeSpan? totalQueuedTime = default, TimeSpan? totalRunningTime = default, string rootProcessNodeId = default, string yarnApplicationId = default, long? yarnApplicationTimeStamp = default, Microsoft.Azure.Management.DataLake.Analytics.Models.CompileMode? compileMode = default);
new Microsoft.Azure.Management.DataLake.Analytics.Models.USqlJobProperties : string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.DataLake.Analytics.Models.JobResource> * Microsoft.Azure.Management.DataLake.Analytics.Models.JobStatistics * Microsoft.Azure.Management.DataLake.Analytics.Models.JobDataPath * System.Collections.Generic.IList<Microsoft.Azure.Management.DataLake.Analytics.Models.Diagnostics> * string * Nullable<TimeSpan> * Nullable<TimeSpan> * Nullable<TimeSpan> * Nullable<TimeSpan> * string * string * Nullable<int64> * Nullable<Microsoft.Azure.Management.DataLake.Analytics.Models.CompileMode> -> Microsoft.Azure.Management.DataLake.Analytics.Models.USqlJobProperties
Public Sub New (script As String, Optional runtimeVersion As String = Nothing, Optional resources As IList(Of JobResource) = Nothing, Optional statistics As JobStatistics = Nothing, Optional debugData As JobDataPath = Nothing, Optional diagnostics As IList(Of Diagnostics) = Nothing, Optional algebraFilePath As String = Nothing, Optional totalCompilationTime As Nullable(Of TimeSpan) = Nothing, Optional totalPauseTime As Nullable(Of TimeSpan) = Nothing, Optional totalQueuedTime As Nullable(Of TimeSpan) = Nothing, Optional totalRunningTime As Nullable(Of TimeSpan) = Nothing, Optional rootProcessNodeId As String = Nothing, Optional yarnApplicationId As String = Nothing, Optional yarnApplicationTimeStamp As Nullable(Of Long) = Nothing, Optional compileMode As Nullable(Of CompileMode) = Nothing)

Parameters

script
String

the script to run

runtimeVersion
String

the runtime version of the Data Lake Analytics engine to use for the specific type of job being run.

resources
IList<JobResource>

the list of resources that are required by the job

statistics
JobStatistics

the job specific statistics.

debugData
JobDataPath

the job specific debug data locations.

diagnostics
IList<Diagnostics>

the diagnostics for the job.

algebraFilePath
String

the algebra file path after the job has completed

totalCompilationTime
Nullable<TimeSpan>

the total time this job spent compiling. This value should not be set by the user and will be ignored if it is.

totalPauseTime
Nullable<TimeSpan>

the total time this job spent paused. This value should not be set by the user and will be ignored if it is.

totalQueuedTime
Nullable<TimeSpan>

the total time this job spent queued. This value should not be set by the user and will be ignored if it is.

totalRunningTime
Nullable<TimeSpan>

the total time this job spent executing. This value should not be set by the user and will be ignored if it is.

rootProcessNodeId
String

the ID used to identify the job manager coordinating job execution. This value should not be set by the user and will be ignored if it is.

yarnApplicationId
String

the ID used to identify the yarn application executing the job. This value should not be set by the user and will be ignored if it is.

yarnApplicationTimeStamp
Nullable<Int64>

the timestamp (in ticks) for the yarn application executing the job. This value should not be set by the user and will be ignored if it is.

compileMode
Nullable<CompileMode>

Optionally enforces a specific compilation mode for the job during execution. If this is not specified during submission, the server will determine the optimal compilation mode. Possible values include: 'Semantic', 'Full', 'SingleBox'

Applies to