I am deploying with docker-compose two services:
- mlflow
- jupyternotebook lab
The thing is when I try to do:
with mlflow.start_run():
It gives me:
WARNING:urllib3.connectionpool:Retrying (Retry(total=4, connect=4, read=5, redirect=5, status=5)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7e3d86034d10>: Failed to establish a new connection: [Errno 111] Connection refused')': /api/2.0/mlflow/runs/create
It looks like it is a bug, because they can see each other (services)
I’ve already tried 2.13 image from mlflow and 2.11, same error, anyone knows?
Thank you