Aracılığıyla paylaş


USqlJobProperties Constructors

Definition

Overloads

USqlJobProperties()

Initializes a new instance of the USqlJobProperties class.

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.

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);
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? totalQueuedTime = default, TimeSpan? totalRunningTime = default, TimeSpan? totalPausedTime = 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
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)
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 totalQueuedTime As Nullable(Of TimeSpan) = Nothing, Optional totalRunningTime As Nullable(Of TimeSpan) = Nothing, Optional totalPausedTime 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. Please note that the maximum script size is 3 MB.

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.

totalPauseTimetotalQueuedTime
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.

totalQueuedTimetotalRunningTime
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.

totalRunningTimetotalPausedTime
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>

The specific compilation mode for the job used 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