IBMQBackendService.jobs¶
- IBMQBackendService.jobs(limit=10, skip=0, backend_name=None, status=None, job_name=None, start_datetime=None, end_datetime=None, job_tags=None, job_tags_operator='OR', descending=True, db_filter=None)[source]¶
Return a list of jobs, subject to optional filtering.
Retrieve jobs that match the given filters and paginate the results if desired. Note that the server has a limit for the number of jobs returned in a single call. As a result, this function might involve making several calls to the server. See the skip parameter for more control over pagination.
- Parameters
limit (
int
) – Number of jobs to retrieve.skip (
int
) – Starting index for the job retrieval.backend_name (
Optional
[str
]) – Name of the backend to retrieve jobs from.status (
Union
[JobStatus
,str
,List
[Union
[JobStatus
,str
]],None
]) – Only get jobs with this status or one of the statuses. For example, you can specify status=JobStatus.RUNNING or status=”RUNNING” or status=[“RUNNING”, “ERROR”]job_name (
Optional
[str
]) – Filter by job name. The job_name is matched partially and regular expressions can be used.start_datetime (
Optional
[datetime
]) – Filter by the given start date, in local time. This is used to find jobs whose creation dates are after (greater than or equal to) this local date/time.end_datetime (
Optional
[datetime
]) – Filter by the given end date, in local time. This is used to find jobs whose creation dates are before (less than or equal to) this local date/time.job_tags (
Optional
[List
[str
]]) – Filter by tags assigned to jobs.job_tags_operator (
Optional
[str
]) –Logical operator to use when filtering by job tags. Valid values are “AND” and “OR”:
If “AND” is specified, then a job must have all of the tags specified in
job_tags
to be included.If “OR” is specified, then a job only needs to have any of the tags specified in
job_tags
to be included.
descending (
bool
) – IfTrue
, return the jobs in descending order of the job creation date (i.e. newest first) until the limit is reached.db_filter (
Optional
[Dict
[str
,Any
]]) –A loopback-based filter. This is an interface to a database
where
filter. Some examples of its usage are:Filter last five jobs with errors:
job_list = backend.jobs(limit=5, status=JobStatus.ERROR)
Filter last five jobs with hub name
ibm-q
:filter = {'hubInfo.hub.name': 'ibm-q'} job_list = backend.jobs(limit=5, db_filter=filter)
- Return type
List
[IBMQJob
]- Returns
A list of
IBMQJob
instances.- Raises
IBMQBackendValueError – If a keyword value is not recognized.
TypeError – If the input start_datetime or end_datetime parameter value is not valid.