Skip to content

kiara.processing

Job pydantic-model

error: str pydantic-field

Potential error message.

inputs: PipelineValuesInfo pydantic-field required

The input values.

outputs: PipelineValuesInfo pydantic-field required

The output values.

pipeline_id: str pydantic-field required

The id of the pipeline this jobs runs for.

pipeline_name: str pydantic-field required

The name/type of the pipeline.

status: JobStatus pydantic-field

The current status of the job.

step_id: str pydantic-field required

The id of the step within the pipeline.

JobLog pydantic-model

log: Dict[int, kiara.processing.__init__.LogMessage] pydantic-field

The logs for this job.

percent_finished: int pydantic-field

Describes how much of the job is finished. A negative number means the module does not support progress tracking.

JobStatus

An enumeration.

LogMessage pydantic-model

log_level: int pydantic-field required

The log level.

msg: str pydantic-field required

The log message

timestamp: datetime pydantic-field

The time the message was logged.

ProcessingInfo pydantic-model

finished: datetime pydantic-field

When the job was finished.

id: str pydantic-field required

The id of the job.

job_log: JobLog pydantic-field

Details about the job progress.

module_config: Dict[str, Any] pydantic-field required

The module configuration.

module_doc: DocumentationMetadataModel pydantic-field required

Documentation for the module that runs the job.

module_type: str pydantic-field required

The module type name.

started: datetime pydantic-field

When the job was started.

submitted: datetime pydantic-field

When the job was submitted.