goofys icon indicating copy to clipboard operation
goofys copied to clipboard

a high-performance, POSIX-ish Amazon S3 file system written in Go

Results 166 goofys issues
Sort by recently updated
recently updated
newest added

Updrading aws-sdk-go to latest version available at moment of writing. This solves https://github.com/kahing/goofys/issues/671 for me

Fixing the creation of multiple inode creation for the same name when MkDir executed simultaneously.

I have a file that is mostly NULs. Copying it into goofys from a lz4 compressed ZFS dataset results in a truncated file in S3. Copying the same file from...

It's been a while since Goofys [latest release](https://github.com/kahing/goofys/releases/tag/v0.24.0) in 2020. We really appreciate the effort of the maintainers who create and maintain this great application for us. While we can...

We already have dependencies upgrade PRs for aws (https://github.com/kahing/goofys/pull/706) and azure (https://github.com/kahing/goofys/pull/680) sdk, the only one missing is gcs and I think it's a good idea to upgrade it before...

When used in conjunction with migrate-fs to create an overlay of two goofys: Upon overwriting a file, which causes a "copyup" event. See the following debug snippet ``` 2022/07/28 10:43:48.679751...

Otherwise the path in the S3 request is empty, which is invalid. (original PR at https://github.com/ppenguin/goofys/pull/2)

I see that the project is using the https://github.com/aws/aws-sdk-go library and I´m not sure if this library supports OAuth 2.0 access token or OpenID Connect ID token (https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-envvars.html). I tried...

Jul 10 08:16:20 pc2worker0039 /usr/local/bin/goofys[1720654]: main.ERROR stacktrace from panic: deref 1 from 0 #012goroutine 47 [running]:#012runtime/debug.Stack(0xce27484b90, 0xf1ab40, 0xd9cbe651f0)#012#011/usr/lib/go-1.13/src/runtime/debug/stack.go:24 +0x9d#012github.com/kahing/goofys/api/common.LogPanic(0xce27484e48)#012#011/root/goofys/api/common/panic_logger.go:32 +0x7c#012panic(0xf1ab40, 0xd9cbe651f0)#012#011/usr/lib/go-1.13/src/runtime/panic.go:679 +0x1b2#012github.com/kahing/goofys/internal.(*Inode).DeRef(0xd6e2a64000, 0x1, 0x73a6106)#012#011/root/goofys/internal/handles.go:290 +0x20b#012github.com/kahing/goofys/internal.(*Goofys).ForgetInode(0xc0004a4000, 0x140e900, 0xd0fa399350, 0xd89d855480, 0x0, 0x0)#012#011/root/goofys/internal/goofys.go:770...

The dependencies listed in the go.mod are pointing to azure libraries that have interfaces that goofys won't work with. This PR updates the code to use the correct interfaces (I...