-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow tracking to databricks
URI
#248
Comments
Hello @nblumoe, thank you very much for reporting this bug. Would you mind checking if this branch fixes it for you? pip uninstall kedro-mlflow
pip install git+https://github.com/Galileo-Galilei/kedro-mlflow.git@bug/mtu-databricks When you confirm it is ok, I'll deploy the bugfix to PyPI. P.S.: |
I can confirm that it works with a config like this:
It also works with And yes, the Thanks for the quick fix and the great work on this project! |
Description
We would like to track to a Databricks managed MLflow tracking server. This should be possible by setting the
mlflow_tracking_uri
todatabricks
(see here)kedro-mlfow will instead use a local, relative directory
./databricks
to track the metrics.Context
This would allow to integrate kedro-mlflow with the popular Databricks platform, more specifically the managed MLflow they offer.
Possible Implementation
I don't know enough about the implementation to give recommendations. Maybe there needs to be a conditional not to interpret
databricks
as a relative path as it seems to be a reserved word for the tracking URIs?Possible Alternatives
As an alternative, it seems possible to use
databricks://<PROFILE>
as the tracking URI, but this requires to have such a profile in the first place.The text was updated successfully, but these errors were encountered: