Interface DataprocJobHiveConfig
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DataprocJobHiveConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-31T03:59:20.738Z") @Stability(Stable) public interface DataprocJobHiveConfig extends software.amazon.jsii.JsiiSerializable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classDataprocJobHiveConfig.BuilderA builder forDataprocJobHiveConfigstatic classDataprocJobHiveConfig.Jsii$ProxyAn implementation forDataprocJobHiveConfig
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static DataprocJobHiveConfig.Builderbuilder()default ObjectgetContinueOnFailure()Whether to continue executing queries if a query fails.default List<String>getJarFileUris()HCFS URIs of jar files to add to the CLASSPATH of the Hive server and Hadoop MapReduce (MR) tasks.default Map<String,String>getProperties()A mapping of property names and values, used to configure Hive.default StringgetQueryFileUri()HCFS URI of file containing Hive script to execute as the job.default List<String>getQueryList()The list of Hive queries or statements to execute as part of the job.default Map<String,String>getScriptVariables()Mapping of query variable names to values (equivalent to the Hive command: SET name="value";).
-
-
-
Method Detail
-
getContinueOnFailure
@Stability(Stable) @Nullable default Object getContinueOnFailure()
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. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataproc_job#continue_on_failure DataprocJob#continue_on_failure}
-
getJarFileUris
@Stability(Stable) @Nullable default List<String> getJarFileUris()
HCFS URIs of jar files to add to the CLASSPATH of the Hive server and Hadoop MapReduce (MR) tasks.Can contain Hive SerDes and UDFs. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataproc_job#jar_file_uris DataprocJob#jar_file_uris}
-
getProperties
@Stability(Stable) @Nullable default Map<String,String> getProperties()
A mapping of property names and values, used to configure Hive.Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in /etc/hadoop/conf/*-site.xml, /etc/hive/conf/hive-site.xml, and classes in user code. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataproc_job#properties DataprocJob#properties}
-
getQueryFileUri
@Stability(Stable) @Nullable default String getQueryFileUri()
HCFS URI of file containing Hive script to execute as the job. Conflicts with query_list.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataproc_job#query_file_uri DataprocJob#query_file_uri}
-
getQueryList
@Stability(Stable) @Nullable default List<String> getQueryList()
The list of Hive queries or statements to execute as part of the job. Conflicts with query_file_uri.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataproc_job#query_list DataprocJob#query_list}
-
getScriptVariables
@Stability(Stable) @Nullable default Map<String,String> getScriptVariables()
Mapping of query variable names to values (equivalent to the Hive command: SET name="value";).Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataproc_job#script_variables DataprocJob#script_variables}
-
builder
@Stability(Stable) static DataprocJobHiveConfig.Builder builder()
- Returns:
- a
DataprocJobHiveConfig.BuilderofDataprocJobHiveConfig
-
-