Filestash ( https://github.com/mickael-kerjean/filestash ) has a s3 gateway plugin that I made. It proxy the S3 traffic to any downstream storage: SFTP, FTP, another S3, SMB, NFS, IPFS, ...
Alternatives to MinIO for single-node local S3
71–80 of 112 posts
Re: Alternatives to MinIO for single-node local S3
#72A notable mention should also be Versity GW, https://github.com/versity/versitygw/
Re: Alternatives to MinIO for single-node local S3
#73Re: Alternatives to MinIO for single-node local S3
#74Re: Alternatives to MinIO for single-node local S3
#75But no, I'm also not about to start one or try to make something like SeaweedFS a community supported project that has a chance to be picked up by the CNCF, so I'm part of the problem.
Re: Alternatives to MinIO for single-node local S3
#76Just use the damn file system. Why does everyone have to put HTTP between everything?
Because if you ship a tool with s3 support, the customer can decide if he wants to store in the cloud, or spin up a docker container locally.
Re: Alternatives to MinIO for single-node local S3
#77Just use the damn file system. Why does everyone have to put HTTP between everything?
Because you want to mock the tools you are going to use in production locally or in CI. Really good reasons to not totally change what you are doing in your app between environments.
Mocks do that.
If you want to not totally change what you are doing in your app between environments, point it at an actual S3 bucket in all environments.
Re: Alternatives to MinIO for single-node local S3
#78Re: Alternatives to MinIO for single-node local S3
#79Re: Alternatives to MinIO for single-node local S3
#80Does anyone here have experience using some of the newer S3 family API features like locking with any of the self-hostable options? After reading about celld's Litestream + locking on S3 approach ( https://github.com/denoland/celld ) I got curious about that style of deployment as a way to consolidate small tools so their state is just centralize S3 buckets, but from a bit of reading support for the features like loc…