USqlJobProperties Class

U-SQL job properties used when retrieving U-SQL jobs.

Variables are only populated by the server, and will be ignored when sending a request.

All required parameters must be populated in order to send to Azure.

Inheritance
USqlJobProperties

Constructor

USqlJobProperties(*, script: str, runtime_version: Optional[str] = None, statistics=None, debug_data=None, **kwargs)

Parameters

runtime_version
str
Required

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

script
str
Required

Required. The script to run. Please note that the maximum script size is 3 MB.

type
str
Required

Required. Constant filled by server.

statistics
JobStatistics
Required

The job specific statistics.

debug_data
JobDataPath
Required

The job specific debug data locations.

Variables

resources
list[JobResource]

The list of resources that are required by the job.

diagnostics
list[Diagnostics]

The diagnostics for the job.

algebra_file_path
str

The algebra file path after the job has completed.

total_compilation_time
<xref:timedelta>

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

total_queued_time
<xref:timedelta>

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

total_running_time
<xref:timedelta>

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

total_paused_time
<xref:timedelta>

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

root_process_node_id
str

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.

yarn_application_id
str

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.

yarn_application_time_stamp
<xref:long>

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.

compile_mode
str or 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'