This documentation is for a release that is no longer maintained
See documentation for the latest supported version 3 or the latest supported version 4.Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
Chapter 33. Scheduled Jobs
33.1. Overview Link kopierenLink in die Zwischenablage kopiert!
A scheduled job builds on a regular job by allowing you to specifically schedule how the job should be run. Scheduled jobs are part of the Kubernetes API, which can be managed with oc
commands like other object types.
As of OpenShift Container Platform 3.3.1, Scheduled Jobs is a feature in Technology Preview.
33.2. Creating a Scheduled Job Link kopierenLink in die Zwischenablage kopiert!
A scheduled job configuration consists of the following key parts:
- A schedule specified in cron format.
- A job template used when creating the next job.
- An optional deadline (in seconds) for starting the job if it misses its scheduled time for any reason. Missed jobs executions will be counted as failed ones. If not specified, there is no deadline.
ConcurrencyPolicy
: An optional concurrency policy, specifying how to treat concurrent jobs within a scheduled job. Only one of the following concurrent policies may be specified. If not specified, this defaults to allowing concurrent executions.-
Allow
allows Scheduled Jobs to run concurrently. -
Forbid
forbids concurrent runs, skipping the next run if the previous has not finished yet. -
Replace
cancels the currently running job and replaces it with a new one.
-
-
An optional flag allowing the suspension of a scheduled job. If set to
true
, all subsequent executions will be suspended.
The following is an example of a ScheduledJob
resource:
- Schedule for the job. In this example, a job will run every minute.
- Job template. This is similar to the job example.
- Sets a label for jobs spawned by this scheduled job.
- The restart policy of the pod. This does not apply to the job controller. See Known Issues and Limitations for details.
You can also create and launch a scheduled job from a single command using oc run
. The following command creates and launches the same scheduled job as specified in the previous example:
oc run pi --image=perl --schedule='*/1 * * * ?' \ --restart=OnFailure --labels parent="schedjobpi" \ --command -- perl -Mbignum=bpi -wle 'print bpi(2000)'
$ oc run pi --image=perl --schedule='*/1 * * * ?' \
--restart=OnFailure --labels parent="schedjobpi" \
--command -- perl -Mbignum=bpi -wle 'print bpi(2000)'
With oc run
, the --schedule
option accepts schedules in cron format.
When creating a scheduled job, oc run
only supports the Never
or OnFailure
restart policies (--restart
).
Delete scheduled jobs that you no longer need:
oc delete scheduledjob/<scheduledjob_name>
$ oc delete scheduledjob/<scheduledjob_name>
Doing this prevents them from generating unnecessary artifacts.
33.3. Cleaning Up After a Scheduled Job Link kopierenLink in die Zwischenablage kopiert!
Scheduled jobs can leave behind artifact resources such as jobs or pods. Check if any remain:
oc get jobs oc get pods
$ oc get jobs
$ oc get pods
All artifacts left over from a job execution use the job name as their prefix. For example, given the scheduled job example:
Delete each artifact if you no longer need them. To delete all jobs spawned by a scheduled job, specify the label set during scheduled job creation:
oc delete jobs -l <label>
$ oc delete jobs -l <label>
For example, to delete only the jobs generated by the scheduled job example:
oc delete jobs -l parent=schedjobpi
$ oc delete jobs -l parent=schedjobpi
job "pi-1497848100" deleted
job "pi-1497848160" deleted
33.4. Known Issues Link kopierenLink in die Zwischenablage kopiert!
33.4.1. Unable to Edit a Scheduled Job Link kopierenLink in die Zwischenablage kopiert!
There is a known issue when invoking oc edit scheduledjob
due to an error that was already fixed in the latest version. However, due to significant code changes, this was not backported.
One possible solution is to use oc patch
command instead of oc edit
.
33.4.2. Unable to Change Concurrency Policy Link kopierenLink in die Zwischenablage kopiert!
There is a known issue when changing concurrency policy where no new jobs are created after that operation is run. The issue is still under investigation in the latest version.