Needs advice
on
MinioMinio
and
MongoDBMongoDB
in

I need to decide between Minio and MongoDB . The main features that I want to evaluate are :

  1. speed of save and retrieve documents;
  2. simply to develope of software for they use;
  3. costs;
READ LESS
2 upvotes·343.9K views
Replies (2)
Recommends
on
MongoDB

MongoDB is a NoSQL database to be more specific a document DB, meanwhile Minio is object storage like S3, but you can save unstructured files inside Minio like JSON. If you pick Minio as storage I will be faster then MongoDB to read and write due the fact that Minio do not build indexes, so you will be unable to query the files like a database (nevertheless it supports kind of lambda functions). In the other way MongoDB can do powerful queries over the data, like Geo queries, full-text searches, etc. So, better developer experience.

READ MORE
6 upvotes·903 views
Senior developer ·
Recommends
on
MongoDB

Comparing MongoDB and Minio S3 is like comparing apple and oranges, but your question lead me to believe you are looking for a primary document storage. As others have pointed out, there is no convinient way of doing a search across multiple S3 stored documents. Thst is not the main use case of Minio S3. S3 is an object storage which is good for storing and retreiving large files. You can query data within a large json file, but if you want to change the data you need to upload a new file/object.

When it comes to cost, Minio S3 will be cheaper as it is basicly free. MongoDB is also free, but the capacity to search for data combined with ACID capabilities cost system resources like memory and data nodes, which can be expensive. A 9 node HA cluster from MongoDB inc will quickly cost you 300.000 euro in setup and licensing costs, but you can ofcourse set it up and support MongoDB yourself, which is free. Minio will not consume that much memory, but you will be maintaining the minimum of 6 data nodes which does have a cost. Both MongoDB and Minio comes with libraries which are easy to use and quick to develop against.

READ MORE
3 upvotes·935 views
Avatar of Corrado Ciotti