Or, run Riak with their S3 compatibility layer. Riak is extremely stable and the work Basho has done to make a truly robust distributed database is significant. http://docs.basho.com/riak/cs/2.1.1/
guess it's possible, but riak is not designed to run on a single node. Guess even basho suggests using at least a 5 node cluster.
AWS S3 open source alternative written in Go
111–120 of 139 posts
Re: AWS S3 open source alternative written in Go
#112How easy is it to embed this into go tests? Right now I use goamz/s3test for that, but it has a lot of limitations.
Quite easy actually you can look at https://github.com/restic/restic/blob/master/run_integration...
Re: AWS S3 open source alternative written in Go
#113Earlier quoted context omitted.
I'll give you another pro, customization. Our on-prem Jira instance can have add-ons and changes that aren't allowed in the cloud-hosted version.
That's the Atlassian SaaS offering. You could still run it in any cloud yourself and get all the customizations you want.
Re: AWS S3 open source alternative written in Go
#114Or, run Riak with their S3 compatibility layer. Riak is extremely stable and the work Basho has done to make a truly robust distributed database is significant. http://docs.basho.com/riak/cs/2.1.1/
+1 on RiakCS. They now call it RiakS2 for kicks. The scalability and reliability of their server is insane. You just can't beat Erlang software in that regard. Unfortunately, Basho has been so successful with their TSDB and KV products that they have basically put S2 on maintenance mode. They are still "supporting" it, but no new features. I was hoping this Minio tool could do something similar, but with a single dae…
Re: AWS S3 open source alternative written in Go
#115Or, run Riak with their S3 compatibility layer. Riak is extremely stable and the work Basho has done to make a truly robust distributed database is significant. http://docs.basho.com/riak/cs/2.1.1/
+1 on RiakCS. They now call it RiakS2 for kicks. The scalability and reliability of their server is insane. You just can't beat Erlang software in that regard. Unfortunately, Basho has been so successful with their TSDB and KV products that they have basically put S2 on maintenance mode. They are still "supporting" it, but no new features. I was hoping this Minio tool could do something similar, but with a single dae…
Re: AWS S3 open source alternative written in Go
#116Or, run Riak with their S3 compatibility layer. Riak is extremely stable and the work Basho has done to make a truly robust distributed database is significant. http://docs.basho.com/riak/cs/2.1.1/
Re: AWS S3 open source alternative written in Go
#117Or, run Riak with their S3 compatibility layer. Riak is extremely stable and the work Basho has done to make a truly robust distributed database is significant. http://docs.basho.com/riak/cs/2.1.1/
Other alternatives: ceph - http://docs.ceph.com/docs/master/radosgw/s3/ swift - https://wiki.openstack.org/wiki/Swift/APIFeatureComparison#A...
SWIFT is indeed analogous to S3.
Re: AWS S3 open source alternative written in Go
#118Earlier quoted context omitted.
Other alternatives: ceph - http://docs.ceph.com/docs/master/radosgw/s3/ swift - https://wiki.openstack.org/wiki/Swift/APIFeatureComparison#A...
CEPH is a volume service not an object storage service. SWIFT is indeed analogous to S3.
Re: AWS S3 open source alternative written in Go
#119written in Go - Does this matter?
As you can tell from the other comments, there's plenty of alternatives to pick from, and if you're going to dive in to the code yourself the language may be a deciding factors.
Re: AWS S3 open source alternative written in Go
#120Earlier quoted context omitted.
guess it's possible, but riak is not designed to run on a single node. Guess even basho suggests using at least a 5 node cluster.
Minio is deliberately designed this way. Cloud native applications require strict multitenancy. Minio's approach is to build just enough to meet a single tenant's requirement. Deploy one minio server per tenant or user or customer .. whichever fits you the best. This will allow you to upgrade, customize or bug fix in isolation. To replicate for HA, use "mc mirror -watch SOURCE TARGET" command to pair them up. If you…