What is a Distributed Cluster?

0

I am studying about database, specifically the mongoDB. So, in the face of my ignorance, I would like to know what this expression, cluster distribuído or consulta em cluster distribuído , means.

    
asked by anonymous 30.05.2018 / 00:17

1 answer

0
  A distributed or parallel processing system is a system that interconnects multiple processing nodes (individual computers, not necessarily homogeneous) so that a high-power process runs on the "most available" node, or even subdivided by multiple nodes . Obvious gains are therefore obtained in these solutions: any task, if divisible in several subtasks can be carried out in parallel.   (Wikipedia)

I recommend reading this article about Distributed Database to understand how this concept applies to your MongoDB database.

    
30.05.2018 / 00:57