Share via


JobInformation Class

Definition

The common Data Lake Analytics job information properties.

public class JobInformation
type JobInformation = class
Public Class JobInformation
Inheritance
JobInformation

Constructors

Name Description
JobInformation()

Initializes a new instance of the JobInformation class.

JobInformation(String, JobType, JobProperties, Nullable<Guid>, String, IList<JobErrorDetails>, Nullable<Int32>, Nullable<Int32>, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, Nullable<JobState>, Nullable<JobResult>, String, IList<String>, IList<JobStateAuditRecord>, JobRelationshipProperties)

Initializes a new instance of the JobInformation class.

Properties

Name Description
DegreeOfParallelism

Gets or sets the degree of parallelism used for this job. This must be greater than 0, if set to less than 0 it will default to 1.

EndTime

Gets the completion time of the job.

ErrorMessage

Gets the error message details for the job, if the job failed.

JobId

Gets the job's unique identifier (a GUID).

LogFilePatterns

Gets or sets 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

LogFolder

Gets the log folder path to use in the following format: adl://&lt;accountName&gt;.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/.

Name

Gets or sets the friendly name of the job.

Priority

Gets or sets the priority value 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.

Properties

Gets or sets the job specific properties.

Related

Gets or sets the recurring job relationship information properties.

Result

Gets the result of job execution or the current result of the running job. Possible values include: 'None', 'Succeeded', 'Cancelled', 'Failed'

StartTime

Gets the start time of the job.

State

Gets the job state. When the job is in the Ended state, refer to Result and ErrorMessage for details. Possible values include: 'Accepted', 'Compiling', 'Ended', 'New', 'Queued', 'Running', 'Scheduling', 'Starting', 'Paused', 'WaitingForCapacity'

StateAuditRecords

Gets the job state audit records, indicating when various operations have been performed on this job.

Submitter

Gets the user or account that submitted the job.

SubmitTime

Gets the time the job was submitted to the service.

Type

Gets or sets the job type of the current job (Hive or USql). Possible values include: 'USql', 'Hive'

Methods

Name Description
Validate()

Validate the object.

Applies to