Runner (autotransform.runner.base)
The base class and associated classes for Runner components.
- class autotransform.runner.base.Runner
Bases:
NamedComponentThe base for Runner components. Used by AutoTransform to run an AutoTransformSchema, either locally on the machine or on remote infrastructure.
- name
The name of the component.
- Type:
ClassVar[RunnerName]
- model_config: ClassVar[ConfigDict] = {}
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- name: ClassVar[RunnerName]
- abstract run(schema: AutoTransformSchema) None
Triggers a full run of a Schema.
- Parameters:
schema (AutoTransformSchema) – The schema that will be run.