Shared-nothing architecture

From WikiMD's Food, Medicine & Wellness Encyclopedia

Shared-nothing architecture is a distributed computing architecture where each node is independent and self-sufficient, and there is no single point of contention across the system. This architecture is often contrasted with shared-disk and shared-memory architectures, where multiple nodes share access to storage or memory, respectively. Shared-nothing architectures are particularly well-suited to database management systems, big data processing, and web services, where scalability and fault tolerance are critical.

Overview[edit | edit source]

In a shared-nothing architecture, each node in the system has its own private memory, CPU, and disk storage. Nodes communicate with each other over a network to coordinate their actions, typically using some form of message passing. This design allows the system to scale out by adding more nodes, as each node operates independently of the others. It also improves fault tolerance, as the failure of one node does not directly impact the operation of others.

Advantages[edit | edit source]

  • Scalability: The architecture scales out easily because adding more nodes increases the system's capacity and performance linearly.
  • Fault Tolerance: The independence of nodes means that the failure of one node does not affect the rest of the system, enhancing overall system reliability.
  • Performance: By eliminating contention for shared resources, the system can achieve high performance, especially for read-intensive applications.

Disadvantages[edit | edit source]

  • Complexity: Managing a distributed system and ensuring consistent data across nodes can be complex.
  • Data Replication: To improve availability and fault tolerance, data may need to be replicated across nodes, which can introduce consistency challenges.
  • Network Dependency: The performance of the system can be heavily dependent on the underlying network's latency and throughput.

Applications[edit | edit source]

Shared-nothing architectures are widely used in various applications, including:

Examples[edit | edit source]

  • Google Bigtable: A distributed storage system for managing structured data that is designed to scale to a very large size.
  • Amazon DynamoDB: A fully managed NoSQL database service that supports key-value and document data structures.
  • Apache Cassandra: An open-source distributed NoSQL database designed for handling large amounts of data across many commodity servers.

See Also[edit | edit source]

Wiki.png

Navigation: Wellness - Encyclopedia - Health topics - Disease Index‏‎ - Drugs - World Directory - Gray's Anatomy - Keto diet - Recipes

Search WikiMD


Ad.Tired of being Overweight? Try W8MD's physician weight loss program.
Semaglutide (Ozempic / Wegovy and Tirzepatide (Mounjaro) available.
Advertise on WikiMD

WikiMD is not a substitute for professional medical advice. See full disclaimer.

Credits:Most images are courtesy of Wikimedia commons, and templates Wikipedia, licensed under CC BY SA or similar.


Contributors: Prab R. Tumpati, MD