You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue: MLFlow connector currently does not support any form of authentication and non-secured MLFLow deployments are rare for production deployments.
Solution: Ability to define MLFLOW_TRACKING_TOKEN OS env variable before connecting MLFLow. see details in docs
Implementation: I see the below code returns an MlflowClient instance. Defining (or updating) MLFLOW_TRACKING_TOKEN OS env variable one line above this would work since MLFLow support changing token on the fly to access multiple MLFlow deployments. (see details: mlflow/mlflow#8823)
Note: This change might also resolve #15405 since (to my knowledge) Databricks hosted MLFlow also support using MLFLOW_TRACKING_TOKEN. As well as other hosted MLFlow solutions from AWS Sagemaker etc.