Playing with Docker 1.13 and Minio
media-glass.es
Playing with Docker 1.13 and Minio
1–10 of 13 posts
Re: Playing with Docker 1.13 and Minio
#2Re: Playing with Docker 1.13 and Minio
#3So glad to come across this piece; it is as if you are looking over my shoulder at my to-do list. Started messing with Minio on Docker on Raspberrypi a few days ago testing a setup to implement in my newish business in Shanghai (version 2.0). Still early days but I like what I see.
You continue to produce practical, insightful, germane pieces. Keep up the high quality work. Really appreciate it. Bought your Flocker book last month and plan to start it during Chinese New Year.
Kudos! Be well.
Re: Playing with Docker 1.13 and Minio
#4They built a toy object store while blogging aggressively.
Openstack Swift or Redhat Ceph are still the only real open-source object store players, AFAIK.
[0]http://docs.minio.io/docs/distributed-minio-quickstart-guide
Re: Playing with Docker 1.13 and Minio
#5Does anyone have large (PB-scale) deployments of Minio on premises? We have a need to store hundreds of terabytes of data, and we don't need a filesystem per se, so I was wondering how robust it is.
Re: Playing with Docker 1.13 and Minio
#6Does anyone have large (PB-scale) deployments of Minio on premises? We have a need to store hundreds of terabytes of data, and we don't need a filesystem per se, so I was wondering how robust it is.
Physically impossible to run a PB-scale Minio cluster: it's limited to 16 hard drives. See my comment above.
Re: Playing with Docker 1.13 and Minio
#7Before anyone gets excited, know that Minio only just started supporting clusters of multiple machines, and that it is severely limited: "As with Minio in stand-alone mode, distributed Minio has a per tenant limit of minimum 4 and maximum 16 drives"[0]. They built a toy object store while blogging aggressively. Openstack Swift or Redhat Ceph are still the only real open-source object store players, AFAIK. [0] http://…
Re: Playing with Docker 1.13 and Minio
#8Does anyone have large (PB-scale) deployments of Minio on premises? We have a need to store hundreds of terabytes of data, and we don't need a filesystem per se, so I was wondering how robust it is.
Making a single large PB sized volume where the disks and nodes are managed like a blackbox by the filesystem is quite scary to us at Minio. Any crash means we blew up all the tenants at once. 1000s of individual Minio tenants means, we know when we add the million'th minio instance, it is not any more complex than the first instance of Minio.
Provisioning with k8s [1], mesos [2] or other external orchestration tools is better than Minio's own resource management system. When it comes to the applications, objects are just represented as URLs. Some data sitting on Amazon S3 and some on Minio makes no difference to the application.
We are also planning to introduce a namespace layer to work on top to combine these individual tenants into single namespace. This would allow you to transparently add new clusters as you scale without loosing the ability to have a single namespace.
We hang out at slack [3], please reach out if you have further questions.
[1] - https://github.com/kubernetes/charts/tree/master/stable/mini... [2] - https://github.com/dcos/examples/tree/master/1.8/minio [3] - https://slack.minio.io
Re: Playing with Docker 1.13 and Minio
#9Before anyone gets excited, know that Minio only just started supporting clusters of multiple machines, and that it is severely limited: "As with Minio in stand-alone mode, distributed Minio has a per tenant limit of minimum 4 and maximum 16 drives"[0]. They built a toy object store while blogging aggressively. Openstack Swift or Redhat Ceph are still the only real open-source object store players, AFAIK. [0] http://…
It's good for using in house storage for things that require S3.
Re: Playing with Docker 1.13 and Minio
#10*Medium.com giving me fits and starts trying to post so doing here. CDN issues I am guessing through the GFW of China. So glad to come across this piece; it is as if you are looking over my shoulder at my to-do list. Started messing with Minio on Docker on Raspberrypi a few days ago testing a setup to implement in my newish business in Shanghai (version 2.0). Still early days but I like what I see. You continue to pr…