<@!594948449095647256> So, I am trying to push my...
# plugins-integrations
d
@User So, I am trying to push my artifact data to a local minio bucket. It's hosted on
http://192.168.0.150:9000
with the bucket name
mlflow
The minio server is running locally so I've added the following entries in the
credentials.yml
file of my kedro project:
Copy code
mlflow_creds:
  MLFLOW_S3_ENDPOINT_URL: 'http://192.168.0.150:9000'
  AWS_ACCESS_KEY_ID: 'minioadmin'
  AWS_SECRET_ACCESS_KEY: 'minioadmin'
These are the values for the mlflow.yml file:
Copy code
server:
  mlflow_tracking_uri: 'postgresql://postgres:postgres@localhost:5432/mlflow_db'
  stores_environment_variables: {}
  credentials: mlflow_creds
What I want to do is set postgres to track metrics and manage registered models and use minio's bucket(
mlflow
) to save the artifacts . The above configuration saves all the runs locally inside
./mlruns
folder, I want it to point to the
s3://mlflow
bucket. Please help