简体   繁体   English

那么分布式和集群式的区别是什么?

[英]So what's the difference between distributed and clustered?

I've heard these two terms quite many times, 我听过很多次这两个词,

but always confused. 但总是困惑。

My guess: 我猜:

  1. for distributed servers,each server has its own unique data to serve 对于分布式服务器,每个服务器都有自己唯一的服务数据
  2. for clustered servers,each server is supposed to have the same data given enough time to synchronize 对于群集服务器,每个服务器应该具有相同的数据,给予足够的时间进行同步

Is that the difference? 这有区别吗?

I think the terms themselves might get misused and semantically have overlap, but from my experience, a distributed system is one where all the machines talk to eachother; 我认为这些术语本身可能会被滥用并且在语义上有重叠,但根据我的经验,分布式系统是所有机器彼此交谈的系统; a cluster is where the machines may be indepedent (but not always). 集群是机器可以独立的地方(但并非总是如此)。

Take for example a MMORPG. 以MMORPG为例。 The most complex and highest end architectures are distributed in a way, that the guy standing next to you and that you are talking to, is actually connected to a different physical server. 最复杂和最高端的体系结构以某种方式分布,站在您旁边并且您正在与之交谈的人实际上是连接到不同的物理服务器。 It works by having each 'simulation server' talking to different services (like a 'chat' service, a 'trade item' service,..) via a service bus. 它的工作原理是让每个“模拟服务器”通过服务总线与不同的服务(如“聊天”服务,“交易项目”服务......)交谈。 This is what is considered distributed architecture - the machines are working togeather to accomplish the same goal 这就是分布式架构 - 机器正在努力实现同样的目标

Conversely, clustered servers might do their own, distinct set of work completely independent of other machines in the cluster. 相反,群集服务器可以完全独立于群集中的其他计算机执行各自独立的工作。 Look at the SETI project for example... or even a simple ASP.NET load balanced cluster... In both cases, these clusters are doing their own independent set of work and not communicating with eachother - they are just serving up different jobs (SETI) or pages (ASP.NET) to their clients.. 例如,看看SETI项目......甚至是一个简单的ASP.NET负载平衡集群......在这两种情况下,这些集群都在做自己独立的工作而不是互相通信 - 它们只是提供不同的工作(SETI)或页面(ASP.NET)给他们的客户..

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 分布式系统和集群系统之间的差异是什么? - What is the dIfference between a distributed system and a clustered system? AWS Aurora RDS中的群集和实例之间有什么区别 - What's the difference between Cluster and Instance in AWS Aurora RDS 在集群环境中实施Flex身份验证/授权有什么不同? - What's different when implementing Flex authentication/authorization in a clustered environment? Node.js的Cluster模块和Learnboost的Cluster模块之间有什么区别? - What's the difference between Node.js' Cluster module and Learnboost's Cluster module? 多节点上的h2o和hadoop上的h2o有什么区别? - What's the difference between h2o on multi-nodes and h2o on hadoop? 在Vertx群集中,群集主机/端口和公共群集主机/端口之间有何区别? - In Vertx clustering, what's the difference between cluster host/port and public cluster host/port? Cluster和MPP超级计算机架构有什么区别? - What is the difference between a Cluster and MPP supercomputer architecture? MR1和MR2有什么区别? - What is the difference between MR1 and MR2? 故障转移与高可用性之间有什么区别? - What is the difference between failover vs high availability? 分布式系统中的故障转移有哪些算法? - What algorithms there are for failover in a distributed system?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM