Base Abstraction
TheBaseStepOperator is the abstract base class that needs to be subclassed in order to run specific steps of your pipeline in a separate environment. As step operators can come in many shapes and forms, the base class exposes a deliberately basic and generic interface:
Build your own custom step operator
If you want to create your own custom flavor for a step operator, you can follow the following steps:-
Create a class which inherits from the
BaseOrchestratorclass and implement the abstractlaunchmethod. This method has two main responsibilities:- Preparing a suitable execution environment (e.g. a Docker image): The general environment is highly dependent on the concrete step operator implementation, but for ZenML to be able to run the step it requires you to install some
pipdependencies. The list of requirements needed to successfully execute the step can be found via the Docker settingsinfo.pipeline.docker_settingspassed to thelaunch()method. Additionally, you’ll have to make sure that all the source code of your ZenML step and pipeline are available within this execution environment. - Running the entrypoint command: Actually running a single step of a pipeline requires knowledge of many ZenML internals and is implemented in the
zenml.step_operators.step_operator_entrypoint_configurationmodule. As long as your environment was set up correctly (see the previous bullet point), you can run the step using the command provided via theentrypoint_commandargument of thelaunch()method.
- Preparing a suitable execution environment (e.g. a Docker image): The general environment is highly dependent on the concrete step operator implementation, but for ZenML to be able to run the step it requires you to install some
-
If your step operator allows specification of per-step resources, make sure to handle the resources defined on the step (
info.config.resource_settings) that was passed to thelaunch()method. -
If you need to provide any configuration, create a class which inherits from the
BaseOrchestratorConfigclass add your configuration parameters. -
Bring both of the implementation and the configuration together by inheriting from the
BaseOrchestratorFlavorclass. Make sure that you give anameto the flavor through its abstract property.
- The CustomStepOperatorFlavor class is imported and utilized upon the creation of the custom flavor through the CLI.
- The CustomStepOperatorConfig class is imported when someone tries to register/update a stack component with this custom flavor. Especially, during the registration process of the stack component, the config will be used to validate the values given by the user. As
Configobject are inherentlypydanticobjects, you can also add your own custom validators here. - The CustomStepOperator only comes into play when the component is ultimately in use.
CustomStepOperatorFlavor and the CustomStepOperatorConfig are implemented in a different module/path than the actual CustomStepOperator).