<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Difference between Workspace and Unity Catalog experiments when using MLflow autologging? in Machine Learning</title>
    <link>https://community.databricks.com/t5/machine-learning/difference-between-workspace-and-unity-catalog-experiments-when/m-p/167443#M4688</link>
    <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/250220"&gt;@kunduruanil&lt;/a&gt;&amp;nbsp;with MLflow 3.8.1, you control two storage decisions:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;The tracking URI selects the server that stores experiment and run metadata.&lt;/LI&gt;&lt;LI&gt;The experiment's artifact location selects where MLflow stores model files and other artifacts.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;mlflow.autolog() uses those settings. It does not create or select a separate Unity Catalog experiment.&lt;/P&gt;&lt;P&gt;For model-training runs, Databricks provides &lt;STRONG&gt;workspace experiments&lt;/STRONG&gt;&amp;nbsp;and &lt;STRONG&gt;notebook experiments&lt;/STRONG&gt;. A three-level name such as catalog.schema.model_name identifies a registered model in Unity Catalog, not an experiment.&lt;/P&gt;&lt;P&gt;For the current Databricks workspace, configure a workspace experiment like this:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import mlflow

EXPERIMENT_NAME = "/Shared/ml-team/customer-churn"
ARTIFACT_LOCATION = (
"dbfs:/Volumes/main/mlops/mlflow_artifacts/customer_churn"
)

mlflow.set_tracking_uri("databricks")

if mlflow.get_experiment_by_name(EXPERIMENT_NAME) is None:
mlflow.create_experiment(
name=EXPERIMENT_NAME,
artifact_location=ARTIFACT_LOCATION,
)

mlflow.set_experiment(EXPERIMENT_NAME)
mlflow.autolog()

model.fit(X_train, y_train)&lt;/LI-CODE&gt;&lt;P&gt;Databricks stores the parameters, metrics, tags, and run metadata in the workspace tracking server. The UC Volume contains the logged model files and other artifacts.&lt;/P&gt;&lt;P&gt;MLflow 3.8.1 supports this setup. Databricks requires MLflow 2.15 or later for experiment artifacts stored in UC Volumes.&lt;/P&gt;&lt;P&gt;An existing experiment keeps the artifact location chosen at creation. If the named experiment points somewhere else, create a new experiment with a new name and the required Volume path.&lt;/P&gt;&lt;P&gt;To send runs to another Databricks workspace, configure that workspace as a Databricks CLI profile and select it before setting the experiment:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;mlflow.set_tracking_uri("databricks://&amp;lt;profile-name&amp;gt;")
mlflow.set_experiment("/Shared/ml-team/customer-churn")&lt;/LI-CODE&gt;&lt;P&gt;Manage access to experiment metadata through workspace experiment permissions; manage access to artifact files through Unity Catalog grants on the Volume.&lt;/P&gt;&lt;P&gt;If you register the trained model, use a three-level name such as main.ml_models.customer_churn. MLflow 3 uses the Unity Catalog Model Rgeistry by default on supported Databricks workspaces. Model registration does not change where the source experiment lives.&lt;/P&gt;&lt;P&gt;Databricks also supports storing OpenTelemetry traces in UC Delta tables. That feature keeps the MLflow experiment as the UI entry point and requires MLflow 3.14 or later. It does not apply to model-training autologging with MLflow 3.8.1.&lt;/P&gt;</description>
    <pubDate>Thu, 03 Sep 2026 18:19:45 GMT</pubDate>
    <dc:creator>ivanvyd</dc:creator>
    <dc:date>2026-09-03T18:19:45Z</dc:date>
    <item>
      <title>Difference between Workspace and Unity Catalog experiments when using MLflow autologging?</title>
      <link>https://community.databricks.com/t5/machine-learning/difference-between-workspace-and-unity-catalog-experiments-when/m-p/167254#M4682</link>
      <description>&lt;DIV class=""&gt;&lt;DIV&gt;&lt;SPAN&gt;Hi everyone,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;I am trying to understand the exact differences between using Workspace experiments versus Unity Catalog experiments, specifically in the context of MLflow autologging (mlflow.autolog()).&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;Does autologging behave differently depending on whether the experiment is registered in the Workspace or in Unity Catalog (using a 3-level namespace)? Are there any limitations, best practices, or specific configurations I should be aware of when using autologging with Unity Catalog compared to the traditional Workspace setup?&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;Any insights or documentation links would be greatly appreciated. Thanks!&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 02 Sep 2026 08:44:13 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/difference-between-workspace-and-unity-catalog-experiments-when/m-p/167254#M4682</guid>
      <dc:creator>kunduruanil</dc:creator>
      <dc:date>2026-09-02T08:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Workspace and Unity Catalog experiments when using MLflow autologging?</title>
      <link>https://community.databricks.com/t5/machine-learning/difference-between-workspace-and-unity-catalog-experiments-when/m-p/167256#M4683</link>
      <description>&lt;P class=""&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/250220"&gt;@kunduruanil&lt;/a&gt;&amp;nbsp; Hi,&lt;/P&gt;&lt;P class=""&gt;As far as I understand, mlflow.autolog() works in basically the same way with Workspace and Unity Catalog experiments. It automatically logs supported parameters, metrics, models, and other information from the ML training run.&lt;/P&gt;&lt;P&gt;The main difference is how the experiments and MLflow assets are managed and governed. Workspace experiments are tied to the workspace, while Unity Catalog gives you more centralized governance and access control.&lt;/P&gt;&lt;P&gt;For production use, Unity Catalog can be a better option when multiple teams need controlled access and governance.&lt;/P&gt;&lt;P&gt;I would also check the Databricks Runtime and MLflow versions, since some features and configurations may depend on the version you are using.&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;</description>
      <pubDate>Wed, 02 Sep 2026 08:59:58 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/difference-between-workspace-and-unity-catalog-experiments-when/m-p/167256#M4683</guid>
      <dc:creator>gowri_databrick</dc:creator>
      <dc:date>2026-09-02T08:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Workspace and Unity Catalog experiments when using MLflow autologging?</title>
      <link>https://community.databricks.com/t5/machine-learning/difference-between-workspace-and-unity-catalog-experiments-when/m-p/167260#M4684</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/250070"&gt;@gowri_databrick&lt;/a&gt;&amp;nbsp; Mlflow version is&amp;nbsp;&lt;SPAN&gt;3.8.1 and I want to control how and where my&amp;nbsp;experiments are stored!! Do you know how to do that?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Sep 2026 09:07:48 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/difference-between-workspace-and-unity-catalog-experiments-when/m-p/167260#M4684</guid>
      <dc:creator>kunduruanil</dc:creator>
      <dc:date>2026-09-02T09:07:48Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Workspace and Unity Catalog experiments when using MLflow autologging?</title>
      <link>https://community.databricks.com/t5/machine-learning/difference-between-workspace-and-unity-catalog-experiments-when/m-p/167443#M4688</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/250220"&gt;@kunduruanil&lt;/a&gt;&amp;nbsp;with MLflow 3.8.1, you control two storage decisions:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;The tracking URI selects the server that stores experiment and run metadata.&lt;/LI&gt;&lt;LI&gt;The experiment's artifact location selects where MLflow stores model files and other artifacts.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;mlflow.autolog() uses those settings. It does not create or select a separate Unity Catalog experiment.&lt;/P&gt;&lt;P&gt;For model-training runs, Databricks provides &lt;STRONG&gt;workspace experiments&lt;/STRONG&gt;&amp;nbsp;and &lt;STRONG&gt;notebook experiments&lt;/STRONG&gt;. A three-level name such as catalog.schema.model_name identifies a registered model in Unity Catalog, not an experiment.&lt;/P&gt;&lt;P&gt;For the current Databricks workspace, configure a workspace experiment like this:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import mlflow

EXPERIMENT_NAME = "/Shared/ml-team/customer-churn"
ARTIFACT_LOCATION = (
"dbfs:/Volumes/main/mlops/mlflow_artifacts/customer_churn"
)

mlflow.set_tracking_uri("databricks")

if mlflow.get_experiment_by_name(EXPERIMENT_NAME) is None:
mlflow.create_experiment(
name=EXPERIMENT_NAME,
artifact_location=ARTIFACT_LOCATION,
)

mlflow.set_experiment(EXPERIMENT_NAME)
mlflow.autolog()

model.fit(X_train, y_train)&lt;/LI-CODE&gt;&lt;P&gt;Databricks stores the parameters, metrics, tags, and run metadata in the workspace tracking server. The UC Volume contains the logged model files and other artifacts.&lt;/P&gt;&lt;P&gt;MLflow 3.8.1 supports this setup. Databricks requires MLflow 2.15 or later for experiment artifacts stored in UC Volumes.&lt;/P&gt;&lt;P&gt;An existing experiment keeps the artifact location chosen at creation. If the named experiment points somewhere else, create a new experiment with a new name and the required Volume path.&lt;/P&gt;&lt;P&gt;To send runs to another Databricks workspace, configure that workspace as a Databricks CLI profile and select it before setting the experiment:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;mlflow.set_tracking_uri("databricks://&amp;lt;profile-name&amp;gt;")
mlflow.set_experiment("/Shared/ml-team/customer-churn")&lt;/LI-CODE&gt;&lt;P&gt;Manage access to experiment metadata through workspace experiment permissions; manage access to artifact files through Unity Catalog grants on the Volume.&lt;/P&gt;&lt;P&gt;If you register the trained model, use a three-level name such as main.ml_models.customer_churn. MLflow 3 uses the Unity Catalog Model Rgeistry by default on supported Databricks workspaces. Model registration does not change where the source experiment lives.&lt;/P&gt;&lt;P&gt;Databricks also supports storing OpenTelemetry traces in UC Delta tables. That feature keeps the MLflow experiment as the UI entry point and requires MLflow 3.14 or later. It does not apply to model-training autologging with MLflow 3.8.1.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Sep 2026 18:19:45 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/difference-between-workspace-and-unity-catalog-experiments-when/m-p/167443#M4688</guid>
      <dc:creator>ivanvyd</dc:creator>
      <dc:date>2026-09-03T18:19:45Z</dc:date>
    </item>
  </channel>
</rss>

