This time we are going to enter the fascinating world of Shared-nothing architecture. For a long time, Shared-nothing architecture has been a topic of great interest to multiple sectors of society. Its relevance has transcended over the years, generating debates, research and diverse opinions. In this article, we aim to thoroughly explore the different aspects related to Shared-nothing architecture, from its origins to its impact today. Likewise, we will analyze the role that Shared-nothing architecture plays in our lives and its influence on the world around us. Get ready to immerse yourself in an exciting journey through Shared-nothing architecture, discovering its importance and its multiple implications.
A shared-nothing architecture (SN) is a distributed computing architecture in which each update request is satisfied by a single node (processor/memory/storage unit) in a computer cluster. The intent is to eliminate contention among nodes. Nodes do not share (independently access) the same memory or storage.
One alternative architecture is shared everything, in which requests are satisfied by arbitrary combinations of nodes. This may introduce contention, as multiple nodes may seek to update the same data at the same time. It also contrasts with shared-disk and shared-memory architectures.
SN eliminates single points of failure, allowing the overall system to continue operating despite failures in individual nodes and allowing individual nodes to upgrade hardware or software without a system-wide shutdown.[1]
A SN system can scale simply by adding nodes, since no central resource bottlenecks the system.[2] In databases, a term for the part of a database on a single node is a shard. A SN system typically partitions its data among many nodes. A refinement is to replicate commonly used but infrequently modified data across many nodes, allowing more requests to be resolved on a single node.
Michael Stonebraker at the University of California, Berkeley used the term in a 1986 database paper.[3] Teradata delivered the first SN database system in 1983.[4] Tandem Computers NonStop systems, a shared-nothing implementation of hardware and software was released to market in 1976.[5][6] Tandem Computers later released NonStop SQL, a shared-nothing relational database, in 1984.[7]
Shared-nothing is popular for web development.
Shared-nothing architectures are prevalent for data warehousing applications, although requests that require data from multiple nodes can dramatically reduce throughput.[8]