Hey folks. I am trying to mount lakefs using s3fs-...
# help
t
Hey folks. I am trying to mount lakefs using s3fs-fuse. I am having a few issues though. Is anyone familiar with using this component? Also open to suggestions about alternate approaches for accessing the data in a branch remotely.
n
Hi @taylor schneider, There were several people on this channel which were able to work with lakeFS and s3fs-fuse successfully. You can search on the channel to see all the threads discussing it. What exactly are the issues you are dealing with? (Also can you please remove the duplicate message from the other channel - that would be very helpful)
t
Deleted the other message. Checking the channel history
🙏🏽 1
@Niro, so i see the old chats, I am following those instructions (consistent with official github page) but still having issues. The mount is successful, but the mount itself is not functioning:
Copy code
(base) [root@localhost ansible-centos]# ls -la /mnt/
ls: cannot access '/mnt/lakefs': Input/output error
total 4
drwxr-xr-x.  3 root root  40 Oct 15 15:14 .
dr-xr-xr-x. 19 root root 254 Oct 14 12:57 ..
-rw-------.  1 root root  62 Oct 15 15:14 .passwd-s3fs
d??????????  ? ?    ?      ?            ? lakefs
I believe I am on the latest version of s3fs
I was able to get the mount working with cuno as opposed to s3fs, so i suspect the problem is with s3fs. Number of open issues with other backends on gihub. Maybe its a bug
h
working for me. s3fs version 1.90
s3fs lakefsRepo /dev/shm/lakefs/ -f -o url=<https://REDACTED.azurecontainerapps.io> -o use_path_request_style -o passwd_file=.passwd-s3fs
password file in the format
Copy code
ACCESS_KEY_ID:SECRET_ACCESS_KEY
as describe by their README
for debugging,
-d -o dbglevel=info
was quite helpful
n
Thanks @HT!!