Global settings of ZenML
Understanding the global settings of your ZenML installation.
The information about the global settings of ZenML on a machine is kept in a folder commonly referred to as the ZenML Global Config Directory or the ZenML Config Path. The location of this folder depends on the operating system type and the current system user, but is usually located in the following locations:
- Linux:
~/.config/zenml
- Mac:
~/Library/Application Support/zenml
- Windows:
C:\Users\%USERNAME%\AppData\Local\zenml
The default location may be overridden by setting the
ZENML_CONFIG_PATH
environment variable to a custom value. The current location of the global config directory used on a system can be retrieved by running the following commands:# The output will tell you something like this:
# Using configuration from: '/home/stefan/.config/zenml'
zenml status
python -c 'from zenml.utils.io_utils import get_global_config_directory; print(get_global_config_directory())'
Manually altering or deleting the files and folders stored under the ZenML global config directory is not recommended, as this can break the internal consistency of the ZenML configuration. As an alternative, ZenML provides CLI commands that can be used to manage the information stored there:
zenml analytics
- manage the analytics settingszenml clean
- to be used only in case of emergency, to bring the ZenML configuration back to its default factory statezenml downgrade
- downgrade the ZenML version in the global configuration to match the version of the ZenML package installed in the current environment. Read more about this in the ZenML Version Mismatch section.
The first time that ZenML is run on a machine, it creates the global config directory and initializes the default configuration in it, along with a default Stack:
Initializing the ZenML global configuration version to 0.13.2
Creating default workspace 'default' ...
Creating default user 'default' ...
Creating default stack for user 'default' in workspace default...
Active workspace not set. Setting it to the default.
The active stack is not set. Setting the active stack to the default workspace stack.
Using the default store for the global config.
Unable to find ZenML repository in your current working directory (/tmp/folder) or any parent directories. If you want to use an existing repository which is in a different location, set the environment variable 'ZENML_REPOSITORY_PATH'. If you want to create a new repository, run zenml init.
Running without an active repository root.
Using the default local database.
Running with active workspace: 'default' (global)
┏━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━┯━━━━━━━━━┯━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━┓
┃ ACTIVE │ STACK NAME │ SHARED │ OWNER │ ARTIFACT_STORE │ ORCHESTRATOR ┃
┠────────┼────────────┼────────┼─────────┼────────────────┼──────────────┨
┃ 👉 │ default │ ❌ │ default │ default │ default ┃
┗━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━┷━━━━━━━━━┷━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━┛
The following is an example of the layout of the global config directory immediately after initialization:
/home/stefan/.config/zenml <- Global Config Directory
├── config.yaml <- Global Configuration Settings
└── local_stores <- Every Stack component that stores information
| locally will have its own subdirectory here.
├── a1a0d3d0-d552-4a80-be09-67e5e29be8ee <- e.g. Local Store path for the
| `default` local Artifact Store
└── zenml.db <- SQLite database where ZenML data (stacks,
components, etc) are stored by default.
As shown above, the global config directory stores the following information:
- 1.The
global.yaml
file stores the global configuration settings: the unique ZenML client ID, the active database configuration, the analytics-related options the active Stack, and the active Workspace. This is an example of theglobal.yaml
file contents immediately after initialization:active_workspace_name: defaultactive_stack_id: ...analytics_opt_in: truestore:database: ...url: ...username: ......user_id: d980f13e-05d1-4765-92d2-1dc7eb7addb7user_metadata: nullversion: 0.13.2 - 2.The
local_stores
directory is where some "local" flavors of stack components, such as thelocal
artifact store, or a local MLFlow experiment tracker, persist data locally. Every local stack component will have its own subdirectory here named after the stack component's unique UUID. One notable example is thelocal
artifact store flavor that, when part of the active stack, stores all the artifacts generated by pipeline runs in the designated local directory. - 3.The
zenml.db
file is the default SQLite database where ZenML stores all information about the stacks, stack components, custom stack component flavors, etc.
In addition to the above, you may also find the following files and folders under the global config directory, depending on what you do with ZenML:
zenml_examples
- used as a local cache by thezenml example
command, where the pulled ZenML examples are stored.kubeflow
- this is where the Kubeflow orchestrators that are part of a stack store some of their configuration and logs.
In order to help us better understand how the community uses ZenML, the pip package reports anonymized usage statistics. You can always opt-out by using the CLI command:
zenml config analytics opt-out
In addition to the community at large, ZenML is created and maintained by a startup based in Munich, Germany called ZenML GmbH. We're a team of techies that love MLOps and want to build tools that fellow developers would love to use in their daily work. This is us if you want to put faces to the names!
However, in order to improve ZenML and understand how it is being used, we need to use analytics to have an overview of how it is used 'in the wild'. This not only helps us find bugs but also helps us prioritize features and commands that might be useful in future releases. If we did not have this information, all we really get is pip download statistics and chatting with people directly, which while being valuable, is not enough to seriously better the tool as a whole.
Currently, ZenML utilizes two different, yet similar, strategies to track the analytics.
In the first version, it uses
Segment
as the data aggregation library for all our analytics. The entire code is entirely visible and can be seen at analytics_utils.py
. The main function is the track(...)
function that triggers a Segment Analytics Track event, which runs on a separate background thread from the main thread.In the second version, the creation of the events and their corresponding metadata follows a similar process. However, before getting tracked by
Segment
, the events first go through a central ZenML analytics server. This added layer allows us to put various countermeasures to incidents such as getting spammed events and enables us to have a more optimized tracking process.In both versions, none of the data sent can identify you individually but allows us to understand how ZenML is being used holistically.
No, we won't. Our sole purpose of contacting you will be to ask for feedback (e.g. in the shape of a user interview). These interviews help the core team understand usage better and prioritize feature requests. If you have any concerns about data privacy and the usage of personal information, please contact us, and we will try to alleviate any concerns as soon as possible.
If you've recently downgraded your ZenML version to an earlier release or installed a newer version on a different environment on the same machine, you might encounter an error message when running ZenML that says:
`The ZenML global configuration version (%s) is higher than the version of ZenML
currently being used (%s).`
We generally recommend using the latest ZenML version. However, there might be cases where you need to match the global configuration version with the version of ZenML installed in the current environment. To do this, run the following command:
zenml downgrade
Note that downgrading the ZenML version may cause unexpected behavior, such as model schema validation failures or even data loss. In such cases, you may need to purge the local database and re-initialize the global configuration to bring it back to its default factory state. To do this, run the following command:
zenml clean
Last modified 2d ago