Workflow Template Job Presto Job Args
data class WorkflowTemplateJobPrestoJobArgs(val clientTags: Output<List<String>>? = null, val continueOnFailure: Output<Boolean>? = null, val loggingConfig: Output<WorkflowTemplateJobPrestoJobLoggingConfigArgs>? = null, val outputFormat: Output<String>? = null, val properties: Output<Map<String, String>>? = null, val queryFileUri: Output<String>? = null, val queryList: Output<WorkflowTemplateJobPrestoJobQueryListArgs>? = null) : ConvertibleToJava<WorkflowTemplateJobPrestoJobArgs>
Constructors
Link copied to clipboard
constructor(clientTags: Output<List<String>>? = null, continueOnFailure: Output<Boolean>? = null, loggingConfig: Output<WorkflowTemplateJobPrestoJobLoggingConfigArgs>? = null, outputFormat: Output<String>? = null, properties: Output<Map<String, String>>? = null, queryFileUri: Output<String>? = null, queryList: Output<WorkflowTemplateJobPrestoJobQueryListArgs>? = null)
Properties
Link copied to clipboard
Presto client tags to attach to this query
Link copied to clipboard
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.
Link copied to clipboard
The runtime log config for job execution.
Link copied to clipboard
The format in which query output will be displayed. See the Presto documentation for supported output formats
Link copied to clipboard
A mapping of property names to values. Used to set Presto (https://prestodb.io/docs/current/sql/set-session.html) Equivalent to using the --session flag in the Presto CLI
Link copied to clipboard
The HCFS URI of the script that contains SQL queries.
Link copied to clipboard
A list of queries.