Warning
The package qiskit-ibmq-provider
is being deprecated and its repo is going to be
archived soon. Please transition to the new packages. More information in
https://ibm.biz/provider_migration_guide
qiskit.providers.ibmq.IBMQBackend.job_limit¶
- IBMQBackend.job_limit()[source]¶
Return the job limit for the backend.
The job limit information includes the current number of active jobs you have on the backend and the maximum number of active jobs you can have on it.
Note
Job limit information for a backend is provider specific. For example, if you have access to the same backend via different providers, the job limit information might be different for each provider.
If the method call was successful, you can inspect the job limit for the backend by accessing the
maximum_jobs
andactive_jobs
attributes of theBackendJobLimit
instance returned. For example:backend_job_limit = backend.job_limit() maximum_jobs = backend_job_limit.maximum_jobs active_jobs = backend_job_limit.active_jobs
If
maximum_jobs
is equal toNone
, then there is no limit to the maximum number of active jobs you could have on the backend.- Return type
- Returns
The job limit for the backend, with this provider.
- Raises
IBMQBackendApiProtocolError -- If an unexpected value is received from the server.