Hello team, is there a guide on how to hookup flyt...
# ask-the-community
a
Hello team, is there a guide on how to hookup flyte-mlflow to an existing mlflow tracking server? Our goal is to log model parameters and metrics to an existing self hosted mlflow tracking server.
k
Cc @Kevin Su - you have to set an env car for the server. Kevin can point better - maybe help adding to the guide
k
Add your mlflow tracking uri to default env in propeller config map, then your task will automatically write the param and metric to your server. will update our doc shortly.
Copy code
plugins:
      k8s:
        default-cpus: 100m
        default-env-vars:
        - MLFLOW_TRACKING_URI: <postgresql+psycopg2://postgres>:@postgres.flyte.svc.cluster.local:5432/flyteadmin
158 Views