Hi there, So I was trying to get lakefs up and ru...
# help
g
Hi there, So I was trying to get lakefs up and running locally, using docker-compose which up to this point seems to be fine. However, when I head back to http://127.0.0.1:8000/setup I just see a blank page. Any thoughts what could be the problem or how can I get my credentials?
g
Hey @Giorgos, Welcome. Can you please try to hard refresh the setup page?
Hey @Giorgos, seems like it is a bug in the new version, we are fixing it ASAP, Thanks.
g
Unfortunately this did not work.
Just my 2p, are you sure this is just an issue with the newest version?
Because I've seen that you made a release earlier today so I thought it could be a bug in the new version but then when I tried to install 0.33.1 I was having the same issue as well
g
Yes it should only be in the newest version. How exactly did you run the earlier version? asking because this bug might exist in master for a while, but wasn’t published in any tag.
g
I downloaded the docker-compose.yml from compose.lakefs.io
and used
image: "treeverse/lakefs:0.33.1"
g
can you please send me the
docker-compose.yaml
file?
g
docker-compose.yml
g
You could verify the version in the log. At the bottom of the log you attached, you could see the version is 0.40.0 Just to make sure can you please run
Copy code
docker-compose down 
docker-compose rm -f
docker-compose up --force-recreate
and then check the version again?
g
yeah that was a different screenshot
Oh actually v0.33.1 with hard refresh did the trick!
Let me know when 0.40 gets fixed though
g
Great!
will do
g
cheers
g
for the meantime if you wan’t a workaround for version 0.40 you could run
Copy code
docker-compose exec lakefs lakefs setup --user-name Giorgos
g
perfect thanks!
Going forward, I have created a repository and I'm trying to upload some dummy data using the cli but it seems that the URI is incorrect. Not sure what I am missing though as I thought that it should be lakefs://repo-name@branch-name
Copy code
lakectl fs upload -s iris.data <lakefs://demo@master>

Error executing command: Invalid 'path': parsing <lakefs://demo@master>: malformed lakefs uri
And to verify that the repo already exists:
g
In version
v0.40.0
the lakeFS URIs where changed, you should now use
<lakefs://repo-name/branch-name>
for detailed information you could check the release notes
g
I'm using version
v0.33.1
I have already tried that anyway:
Copy code
lakectl fs upload -s iris.data <lakefs://demo/master>
Error executing command: Invalid 'path': not a valid path uri
Copy code
lakectl repo list
+-------------+-------------------------------+------------------+-------------------+
| REPOSITORY  | CREATION DATE                 | DEFAULT REF NAME | STORAGE NAMESPACE |
+-------------+-------------------------------+------------------+-------------------+
| demo        | 2021-04-20 18:22:58 +0100 BST | master           | local://          |
| lakefs-demo | 2021-04-20 17:48:22 +0100 BST | master           | local://          |
+-------------+-------------------------------+------------------+-------------------+
g
You should also provide the path
Copy code
<lakefs://demo/master/path/to/object>
In previous versions:
Copy code
<lakefs://demo@master/path/to/object>
🙌 1
g
that worked, cheers
👍 1
g
You could now switch to the lates version
v0.40.1
, the missing setup page bug was fixed there.
g
thanks for letting me know