Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Scheduling

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

Overview

All parameters related to queuing and scheduling of custom jobs.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1Scheduling

Returns a new instance of GoogleCloudAiplatformV1Scheduling.



21380
21381
21382
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21380

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

Instance Attribute Details

#disable_retriesBoolean Also known as: disable_retries?

Optional. Indicates if the job should retry for internal errors after the job starts running. If true, overrides Scheduling.restart_job_on_worker_restart to false. Corresponds to the JSON property disableRetries

Returns:

  • (Boolean)


21359
21360
21361
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21359

def disable_retries
  @disable_retries
end

#restart_job_on_worker_restartBoolean Also known as: restart_job_on_worker_restart?

Restarts the entire CustomJob if a worker gets restarted. This feature can be used by distributed training jobs that are not resilient to workers leaving and joining a job. Corresponds to the JSON property restartJobOnWorkerRestart

Returns:

  • (Boolean)


21367
21368
21369
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21367

def restart_job_on_worker_restart
  @restart_job_on_worker_restart
end

#strategyString

Optional. This determines which type of scheduling strategy to use. Corresponds to the JSON property strategy

Returns:

  • (String)


21373
21374
21375
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21373

def strategy
  @strategy
end

#timeoutString

The maximum job running time. The default is 7 days. Corresponds to the JSON property timeout

Returns:

  • (String)


21378
21379
21380
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21378

def timeout
  @timeout
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



21385
21386
21387
21388
21389
21390
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21385

def update!(**args)
  @disable_retries = args[:disable_retries] if args.key?(:disable_retries)
  @restart_job_on_worker_restart = args[:restart_job_on_worker_restart] if args.key?(:restart_job_on_worker_restart)
  @strategy = args[:strategy] if args.key?(:strategy)
  @timeout = args[:timeout] if args.key?(:timeout)
end