Hello. I'm running lakeFS using everything bagel a...
# help
v
Hello. I'm running lakeFS using everything bagel and run into this error:
Copy code
HTTPConnectionPool(host='localhost', port=8000): Max retries exceeded with url: /api/v1/repositories/example/branches (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fc728391760>: Failed to establish a new connection: [Errno 111] Connection refused'))
From the jupyter notebook that comes with everything bagel, I'm calling list_branches(), which results in this error. What am I missing? I'm able to access the lakeFS UI though.
b
look like you configured the notebook to connect to localhost - I assume lakefs running as 'lakefs' inside the docker compose.
👍 1
v
Good catch! that did it.
lakefs 1
a
@Vino How did you fix this issue? I am not using localhost. lafeFS is running in GCP in my case but still having this issue often.
v
I used lakefs:// instead of localhost:// and that helped me.
a
@Vino My endpoint is like this `lakefsEndPoint = 'http://x.y.z.a:8000'`Do you see any issue in this?