Class: Google::Apis::DataprocV1::PrestoJob

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dataproc_v1/classes.rb,
generated/google/apis/dataproc_v1/representations.rb,
generated/google/apis/dataproc_v1/representations.rb

Overview

A Dataproc job for running Presto (https://prestosql.io/) queries. IMPORTANT: The Dataproc Presto Optional Component (https://cloud.google.com/dataproc/docs/ concepts/components/presto) must be enabled when the cluster is created to submit a Presto job to the cluster.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PrestoJob

Returns a new instance of PrestoJob.



2609
2610
2611
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2609

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#client_tagsArray<String>

Optional. Presto client tags to attach to this query Corresponds to the JSON property clientTags

Returns:

  • (Array<String>)


2571
2572
2573
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2571

def client_tags
  @client_tags
end

#continue_on_failureBoolean Also known as: continue_on_failure?

Optional. 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. Corresponds to the JSON property continueOnFailure

Returns:

  • (Boolean)


2578
2579
2580
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2578

def continue_on_failure
  @continue_on_failure
end

#logging_configGoogle::Apis::DataprocV1::LoggingConfig

The runtime logging config of the job. Corresponds to the JSON property loggingConfig



2584
2585
2586
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2584

def logging_config
  @logging_config
end

#output_formatString

Optional. The format in which query output will be displayed. See the Presto documentation for supported output formats Corresponds to the JSON property outputFormat

Returns:

  • (String)


2590
2591
2592
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2590

def output_format
  @output_format
end

#propertiesHash<String,String>

Optional. A mapping of property names to values. Used to set Presto session properties (https://prestodb.io/docs/current/sql/set-session.html) Equivalent to using the --session flag in the Presto CLI Corresponds to the JSON property properties

Returns:

  • (Hash<String,String>)


2597
2598
2599
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2597

def properties
  @properties
end

#query_file_uriString

The HCFS URI of the script that contains SQL queries. Corresponds to the JSON property queryFileUri

Returns:

  • (String)


2602
2603
2604
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2602

def query_file_uri
  @query_file_uri
end

#query_listGoogle::Apis::DataprocV1::QueryList

A list of queries to run on a cluster. Corresponds to the JSON property queryList



2607
2608
2609
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2607

def query_list
  @query_list
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2614
2615
2616
2617
2618
2619
2620
2621
2622
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2614

def update!(**args)
  @client_tags = args[:client_tags] if args.key?(:client_tags)
  @continue_on_failure = args[:continue_on_failure] if args.key?(:continue_on_failure)
  @logging_config = args[:logging_config] if args.key?(:logging_config)
  @output_format = args[:output_format] if args.key?(:output_format)
  @properties = args[:properties] if args.key?(:properties)
  @query_file_uri = args[:query_file_uri] if args.key?(:query_file_uri)
  @query_list = args[:query_list] if args.key?(:query_list)
end