Job Presto Config Args
data class JobPrestoConfigArgs(val clientTags: Output<List<String>>? = null, val continueOnFailure: Output<Boolean>? = null, val loggingConfig: Output<JobPrestoConfigLoggingConfigArgs>? = null, val outputFormat: Output<String>? = null, val properties: Output<Map<String, String>>? = null, val queryFileUri: Output<String>? = null, val queryLists: Output<List<String>>? = null) : ConvertibleToJava<JobPrestoConfigArgs>
Constructors
Link copied to clipboard
constructor(clientTags: Output<List<String>>? = null, continueOnFailure: Output<Boolean>? = null, loggingConfig: Output<JobPrestoConfigLoggingConfigArgs>? = null, outputFormat: Output<String>? = null, properties: Output<Map<String, String>>? = null, queryFileUri: Output<String>? = null, queryLists: Output<List<String>>? = 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. Setting to true can be useful when executing independent parallel queries. Defaults to false.
Link copied to clipboard
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 session properties Equivalent to using the --session flag in the Presto CLI.
Link copied to clipboard
The HCFS URI of the script that contains SQL queries. Conflicts with query_list
Link copied to clipboard
The list of SQL queries or statements to execute as part of the job. Conflicts with query_file_uri