Setting up a Project Repository
Setting your team up for success with a well-architected ZenML project.
Last updated
Was this helpful?
Setting your team up for success with a well-architected ZenML project.
Last updated
Was this helpful?
Welcome to the guide on setting up a well-architected ZenML project. This section will provide you with a comprehensive overview of best practices, strategies, and considerations for structuring your ZenML projects to ensure scalability, maintainability, and collaboration within your team.
A well-architected ZenML project is crucial for the success of your machine learning operations (MLOps). It provides a solid foundation for your team to develop, deploy, and maintain ML models efficiently. By following best practices and leveraging ZenML's features, you can create a robust and flexible MLOps pipeline that scales with your needs.
A clean and organized repository structure is essential for any ZenML project. This includes:
Proper folder organization for pipelines, steps, and configurations
Clear separation of concerns between different components
Consistent naming conventions
Learn more about setting up your repository in the .
Integrating your ZenML project with version control systems like Git is crucial for team collaboration and code management. This allows for:
Makes creating pipeline builds faster, as you can leverage the same image and .
Easy tracking of changes
Collaboration among team members
Understanding the relationship between stacks, models, and pipelines is key to designing an efficient ZenML project:
Stacks: Define your infrastructure and tool configurations
Models: Represent your machine learning models and their metadata
Pipelines: Encapsulate your ML workflows
Artifacts: Track your data and model outputs
Proper access management ensures that team members have the right permissions and responsibilities:
Define roles such as data scientists, MLOps engineers, and infrastructure managers
Establish processes for pipeline maintenance and server upgrades
Leverage shared components and libraries to promote code reuse and standardization across your team:
Custom flavors, steps, and materializers
Shared private wheels for internal distribution
Handling authentication for specific libraries
Utilize project templates to kickstart your ZenML projects and ensure consistency:
Use pre-made templates for common use cases
Create custom templates tailored to your team's needs
As your project evolves, you may need to migrate existing codebases or upgrade your ZenML server:
Strategies for migrating legacy code to newer ZenML versions
Best practices for upgrading ZenML servers
While it doesn't matter how you structure your ZenML project, here is a recommended project structure the core team often uses:
Keep your steps in separate Python files. This allows you to optionally keep their utils, dependencies, and Dockerfiles separate.
ZenML records the root python logging handler's output into the artifact store as a side-effect of running a step. Therefore, when writing steps, use the logging
module to record logs, to ensure that these logs then show up in the ZenML dashboard.
Just like steps, keep your pipelines in separate Python files. This allows you to optionally keep their utils, dependencies, and Dockerfiles separate.
It is recommended that you separate the pipeline execution from the pipeline definition so that importing the pipeline does not immediately run it.
Do not give pipelines or pipeline instances the name "pipeline". Doing this will overwrite the imported pipeline
and decorator and lead to failures at later stages if more pipelines are decorated there.
Containerized orchestrators and step operators load your complete project files into a Docker image for execution. To speed up the process and reduce Docker image sizes, exclude all unnecessary files (like data, virtual environments, git repos, etc.) within the .dockerignore
.
Collect all your notebooks in one place.
By running zenml init
at the root of your project, you define the project scope for ZenML. In ZenML terms, this will be called your "source root". This will be used to resolve import paths and store configurations.
When running Jupyter notebooks, it is required that you have a .zen
directory initialized in one of the parent directories of your notebook.
When running regular Python scripts, it is still highly recommended that you have a .zen
directory initialized in the root of your project. If that is not the case, ZenML will look for a .zen
directory in the parent directories, which might cause issues if one is found (The import paths will not be relative to the source root anymore for example). If no .zen
directory is found, the parent directory of the Python file that you're executing will be used as the implicit source root.
All of your import paths should be relative to the source root.
Putting your pipeline runners in the root of the repository ensures that all imports that are defined relative to the project root resolve for the pipeline runner. In case there is no .zen
defined this also defines the implicit source's root.
Discover how to connect your Git repository in the .
Learn about organizing these components in the .
Set up and manage authorizations
Leverage to assign roles and permissions to a group of users, to mimic your real-world team roles.
Explore access management strategies in the .
Find out more about sharing code in the .
Learn about using and creating project templates in the .
Discover migration strategies and maintenance best practices in the .
All ZenML are modeled around this basic structure. The steps
and pipelines
folders contain the steps and pipelines defined in your project. If your project is simpler you can also just keep your steps at the top level of the steps
folder without the need so structure them in subfolders.
It might also make sense to register your repository as a code repository. These enable ZenML to keep track of the code version that you use for your pipeline runs. Additionally, running a pipeline that is tracked in can speed up the Docker image building for containerized stack components by eliminating the need to rebuild Docker images each time you change one of your source code files. Learn more about these in .
By default, ZenML uses the official as a base for all pipeline and step builds. You can use your own Dockerfile
to overwrite this behavior. Learn more .