JobInfo#
- class pyedb.workflows.job_manager.backend.service.JobInfo#
Mutable state container for a single simulation.
- Attributes:
- config
HFSSSimulationConfig Immutable configuration.
- status
JobStatus Current life-cycle state.
- start_time
datetimeorNone When the job entered
RUNNING.- end_time
datetimeorNone When the job reached a terminal state.
- return_code
intorNone Exit code of the solver or scheduler.
- output
str Stdout captured (local runs only).
- error
str Stderr captured (local runs only).
- process
asyncio.subprocess.ProcessorNone Handle for local cancellation.
- scheduler_job_id
strorNone External identifier (SLURM, LSF, …).
- local_resources
dictorNone Snapshot of host telemetry at start time.
- priority
int Higher numbers are de-queued first.
- config
Overview#
Import detail#
from pyedb.workflows.job_manager.backend.service import JobInfo
Attribute detail#
- JobInfo.start_time: datetime.datetime | None = None#
- JobInfo.end_time: datetime.datetime | None = None#