cancel
Showing results for 
Search instead for 
Did you mean: 
Data Engineering
cancel
Showing results for 
Search instead for 
Did you mean: 

When using MLflow tracking, where does it store the tracked parameters, metrics and artifacts?

Anonymous
Not applicable

I saw default path for artifacts as dbfs but not sure if that's where everything else is stored. Can we modify it?

1 ACCEPTED SOLUTION

Accepted Solutions

sean_owen
Honored Contributor II
Honored Contributor II

Artifacts like models, model metadata like the "MLmodel" file, input samples, and other logged artifacts like plots, config, network architectures, are stored as files. While these could be simple local filesystem files when the tracking server is run as a standalone service, typically (as in the case of Databricks's hosted MLflow) they are stored on distributed storage.

The location is determined by the Experiment being logged to, which could be configured to write to any mounted storage. By default in Databricks, it logs to a secured path in the root bucket which is protected by ACLs.

Metadata like params, tags, metrics, notes are logged into a database underpinning the MLflow tracking server, which could be most standard databases. In Databricks that is managed in the control plane.

View solution in original post

1 REPLY 1

sean_owen
Honored Contributor II
Honored Contributor II

Artifacts like models, model metadata like the "MLmodel" file, input samples, and other logged artifacts like plots, config, network architectures, are stored as files. While these could be simple local filesystem files when the tracking server is run as a standalone service, typically (as in the case of Databricks's hosted MLflow) they are stored on distributed storage.

The location is determined by the Experiment being logged to, which could be configured to write to any mounted storage. By default in Databricks, it logs to a secured path in the root bucket which is protected by ACLs.

Metadata like params, tags, metrics, notes are logged into a database underpinning the MLflow tracking server, which could be most standard databases. In Databricks that is managed in the control plane.