Class: Google::Apis::DataprocV1::JobScheduling

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

Job scheduling options.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ JobScheduling

Returns a new instance of JobScheduling.



1730
1731
1732
# File 'generated/google/apis/dataproc_v1/classes.rb', line 1730

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

Instance Attribute Details

#max_failures_per_hourFixnum

Optional. Maximum number of times per hour a driver may be restarted as a result of driver exiting with non-zero code before job is reported failed.A job may be reported as thrashing if driver exits with non-zero code 4 times within 10 minute window.Maximum value is 10. Corresponds to the JSON property maxFailuresPerHour

Returns:

  • (Fixnum)


1721
1722
1723
# File 'generated/google/apis/dataproc_v1/classes.rb', line 1721

def max_failures_per_hour
  @max_failures_per_hour
end

#max_failures_totalFixnum

Optional. Maximum number of times in total a driver may be restarted as a result of driver exiting with non-zero code before job is reported failed. Maximum value is 240. Corresponds to the JSON property maxFailuresTotal

Returns:

  • (Fixnum)


1728
1729
1730
# File 'generated/google/apis/dataproc_v1/classes.rb', line 1728

def max_failures_total
  @max_failures_total
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1735
1736
1737
1738
# File 'generated/google/apis/dataproc_v1/classes.rb', line 1735

def update!(**args)
  @max_failures_per_hour = args[:max_failures_per_hour] if args.key?(:max_failures_per_hour)
  @max_failures_total = args[:max_failures_total] if args.key?(:max_failures_total)
end