Class: Aws::EMRContainers::Types::SchedulerConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMRContainers::Types::SchedulerConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emrcontainers/types.rb
Overview
The scheduler configuration for a virtual cluster on Amazon EMR on EKS. It controls how many job runs can run concurrently and how many can wait in the queue. When not set, no concurrency or queue limits are applied.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_concurrent_job_runs ⇒ Integer
The maximum number of job runs that can be in the
RUNNINGstate at any time for the virtual cluster. -
#max_in_queue_job_runs ⇒ Integer
The maximum number of job runs that can be in the
PENDINGorSUBMITTEDstate at any time for the virtual cluster.
Instance Attribute Details
#max_concurrent_job_runs ⇒ Integer
The maximum number of job runs that can be in the RUNNING state at
any time for the virtual cluster. As running slots free up, queued
job runs start automatically. If you omit this field, the service
applies no concurrency limit.
1887 1888 1889 1890 1891 1892 |
# File 'lib/aws-sdk-emrcontainers/types.rb', line 1887 class SchedulerConfiguration < Struct.new( :max_in_queue_job_runs, :max_concurrent_job_runs) SENSITIVE = [] include Aws::Structure end |
#max_in_queue_job_runs ⇒ Integer
The maximum number of job runs that can be in the PENDING or
SUBMITTED state at any time for the virtual cluster. When the
queue is full, the service rejects StartJobRun requests with a
ValidationException. If you omit this field, the service applies
no queue-depth limit.
1887 1888 1889 1890 1891 1892 |
# File 'lib/aws-sdk-emrcontainers/types.rb', line 1887 class SchedulerConfiguration < Struct.new( :max_in_queue_job_runs, :max_concurrent_job_runs) SENSITIVE = [] include Aws::Structure end |