Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

minio: What is the cluster architecture of minio.io object storage server?

I have searched minio.io for hours but id dosn't provide any good information about clustering, dose it has rings and instance are connected? or mini is just for single isolated machine. And for running a cluster we have to run many isolated instance of it and the our app choose to which instance we write?

if yes: When I write a file to a bucket does minio replicate it between multi server? I is it like amazon s3, or openstack swift that support of storing multi copy of object in different servers (and not multi disk on the same machine).

like image 835
Hamid Karimi Avatar asked Dec 11 '22 15:12

Hamid Karimi


2 Answers

Here is the document for distributed minio: https://docs.minio.io/docs/distributed-minio-quickstart-guide

like image 119
Krishna Srinivas Avatar answered Dec 28 '22 05:12

Krishna Srinivas


From what I can tell, minio does not support clustering with automatic replication across multiple servers, balancing, etcetera.

However, the minio documentation does say how you can set up one minio server to mirror another one:

  • https://gitlab.gioxa.com/opensource/minio/blob/1983925dcfc88d4140b40fc807414fe14d5391bd/docs/setup-replication-between-two-sites-running-minio.md
like image 24
Stephen C Avatar answered Dec 28 '22 05:12

Stephen C