api-docs: add SysBatchSchedulerEnabled docs (#11973)
This commit is contained in:
parent
54f8c04c91
commit
05db861938
|
@ -48,6 +48,7 @@ $ curl \
|
|||
"RejectJobRegistration": false,
|
||||
"PreemptionConfig": {
|
||||
"SystemSchedulerEnabled": true,
|
||||
"SysBatchSchedulerEnabled": false,
|
||||
"BatchSchedulerEnabled": false,
|
||||
"ServiceSchedulerEnabled": false
|
||||
}
|
||||
|
@ -72,6 +73,9 @@ $ curl \
|
|||
- `SystemSchedulerEnabled` `(bool: true)` - Specifies whether preemption for system jobs is enabled. Note that
|
||||
this defaults to true.
|
||||
|
||||
- `SysBatchSchedulerEnabled` `(bool: false)` - Specifies whether preemption for system batch jobs is enabled. Note that
|
||||
this defaults to false.
|
||||
|
||||
- `BatchSchedulerEnabled` `(bool: false)` - Specifies whether preemption for batch jobs is enabled. Note that
|
||||
this defaults to false and must be explicitly enabled.
|
||||
|
||||
|
@ -118,6 +122,7 @@ server state is authoritative.
|
|||
"RejectJobRegistration": false,
|
||||
"PreemptionConfig": {
|
||||
"SystemSchedulerEnabled": true,
|
||||
"SysBatchSchedulerEnabled": false,
|
||||
"BatchSchedulerEnabled": false,
|
||||
"ServiceSchedulerEnabled": true
|
||||
}
|
||||
|
@ -138,6 +143,10 @@ server state is authoritative.
|
|||
- `SystemSchedulerEnabled` `(bool: true)` - Specifies whether preemption for
|
||||
system jobs is enabled. Note that if this is set to true, then system jobs
|
||||
can preempt any other jobs.
|
||||
|
||||
- `SysBatchSchedulerEnabled` `(bool: false)` <sup>1.2</sup> - Specifies
|
||||
whether preemption for system batch jobs is enabled. Note that if this is
|
||||
set to true, then system batch jobs can preempt any other jobs.
|
||||
|
||||
- `BatchSchedulerEnabled` `(bool: false)` - Specifies
|
||||
whether preemption for batch jobs is enabled. Note that if this is set to
|
||||
|
|
Loading…
Reference in New Issue