Class: Google::Apis::MlV1::GoogleCloudMlV1Scheduling

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

Overview

All parameters related to scheduling of training jobs.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudMlV1Scheduling

Returns a new instance of GoogleCloudMlV1Scheduling.



2372
2373
2374
# File 'generated/google/apis/ml_v1/classes.rb', line 2372

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

Instance Attribute Details

#max_running_timeString

Optional. The maximum job running time, expressed in seconds. The field can contain up to nine fractional digits, terminated by s. If not specified, this field defaults to 604800s (seven days). If the training job is still running after this duration, AI Platform Training cancels it. The duration is measured from when the job enters the RUNNING state; therefore it does not overlap with the duration limited by Scheduling.max_wait_time. For example, if you want to ensure your job runs for no more than 2 hours, set this field to 7200s (2 hours * 60 minutes / hour * 60 seconds / minute). If you submit your training job using the gcloud tool, you can specify this field in a config. yaml file. For example: yaml trainingInput: scheduling: maxRunningTime: 7200s Corresponds to the JSON property maxRunningTime

Returns:

  • (String)


2346
2347
2348
# File 'generated/google/apis/ml_v1/classes.rb', line 2346

def max_running_time
  @max_running_time
end

#max_wait_timeString

Optional. The maximum job wait time, expressed in seconds. The field can contain up to nine fractional digits, terminated by s. If not specified, there is no limit to the wait time. The minimum for this field is 1800s (30 minutes). If the training job has not entered the RUNNING state after this duration, AI Platform Training cancels it. After the job begins running, it can no longer be cancelled due to the maximum wait time. Therefore the duration limited by this field does not overlap with the duration limited by Scheduling.max_running_time. For example, if the job temporarily stops running and retries due to a VM restart , this cannot lead to a maximum wait time cancellation. However, independently of this constraint, AI Platform Training might stop a job if there are too many retries due to exhausted resources in a region. The following example describes how you might use this field: To cancel your job if it doesn't start running within 1 hour, set this field to 3600s (1 hour * 60 minutes / hour * 60 seconds / minute). If the job is still in the QUEUED or PREPARING state after an hour of waiting, AI Platform Training cancels the job. If you submit your training job using the gcloud tool, you can specify this field in a config.yaml file. For example: yaml trainingInput: scheduling: maxWaitTime: 3600s Corresponds to the JSON property maxWaitTime

Returns:

  • (String)


2370
2371
2372
# File 'generated/google/apis/ml_v1/classes.rb', line 2370

def max_wait_time
  @max_wait_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2377
2378
2379
2380
# File 'generated/google/apis/ml_v1/classes.rb', line 2377

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