Class JobPigConfig
Inheritance
System.Object
JobPigConfig
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.Dataproc.Outputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class JobPigConfig
Fields
View SourceContinueOnFailure
Whether to continue executing queries if a query fails. The default value is false. Setting to true can be useful when executing independent parallel queries. Defaults to false.
Declaration
public readonly bool? ContinueOnFailure
Field Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |
JarFileUris
HCFS URIs of jar files to be added to the Spark CLASSPATH.
Declaration
public readonly ImmutableArray<string> JarFileUris
Field Value
| Type | Description |
|---|---|
| System.Collections.Immutable.ImmutableArray<System.String> |
LoggingConfig
Declaration
public readonly JobPigConfigLoggingConfig LoggingConfig
Field Value
| Type | Description |
|---|---|
| JobPigConfigLoggingConfig |
Properties
A mapping of property names to values, used to configure Spark SQL's SparkConf. Properties that conflict with values set by the Cloud Dataproc API may be overwritten.
Declaration
public readonly ImmutableDictionary<string, string> Properties
Field Value
| Type | Description |
|---|---|
| System.Collections.Immutable.ImmutableDictionary<System.String, System.String> |
QueryFileUri
The HCFS URI of the script that contains SQL queries.
Conflicts with query_list
Declaration
public readonly string QueryFileUri
Field Value
| Type | Description |
|---|---|
| System.String |
QueryLists
The list of SQL queries or statements to execute as part of the job.
Conflicts with query_file_uri
Declaration
public readonly ImmutableArray<string> QueryLists
Field Value
| Type | Description |
|---|---|
| System.Collections.Immutable.ImmutableArray<System.String> |
ScriptVariables
Mapping of query variable names to values (equivalent to the Spark SQL command: SET name="value";).
Declaration
public readonly ImmutableDictionary<string, string> ScriptVariables
Field Value
| Type | Description |
|---|---|
| System.Collections.Immutable.ImmutableDictionary<System.String, System.String> |