Aracılığıyla paylaş


HiveJobProperties Constructors

Definition

Overloads

HiveJobProperties()

Initializes a new instance of the HiveJobProperties class.

HiveJobProperties(String, String, String, String, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the HiveJobProperties class.

HiveJobProperties()

Initializes a new instance of the HiveJobProperties class.

public HiveJobProperties ();
Public Sub New ()

Applies to

HiveJobProperties(String, String, String, String, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the HiveJobProperties class.

public HiveJobProperties (string script, string runtimeVersion = default, string logsLocation = default, string outputLocation = default, int? statementCount = default, int? executedStatementCount = default);
new Microsoft.Azure.Management.DataLake.Analytics.Models.HiveJobProperties : string * string * string * string * Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.DataLake.Analytics.Models.HiveJobProperties
Public Sub New (script As String, Optional runtimeVersion As String = Nothing, Optional logsLocation As String = Nothing, Optional outputLocation As String = Nothing, Optional statementCount As Nullable(Of Integer) = Nothing, Optional executedStatementCount As Nullable(Of Integer) = 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.

logsLocation
String

The Hive logs location.

outputLocation
String

The location of Hive job output files (both execution output and results).

statementCount
Nullable<Int32>

The number of statements that will be run based on the script.

executedStatementCount
Nullable<Int32>

The number of statements that have been run based on the script.

Applies to