DRBD

From Wikipedia, the free encyclopedia

Jump to: navigation, search
DRBD
Design by Philipp Reisner, Lars Ellenberg
Developed by LINBIT (http://www.linbit.com)
Latest release 8.3.0 / December 18, 2008
Written in C
Operating system Linux
Development status Production
Type Distributed storage system
License GNU General Public License v2
Website http://www.drbd.org/
Overview of DRBD concept

DRBD (Distributed Replicated Block Device) is a distributed storage system for the Linux platform. It consists of a kernel module, several userspace management applications and some shell scripts and is normally used on high availability (HA) clusters. DRBD bears similarities to RAID 1, except that it runs over a network.

DRBD refers to both the software (kernel module and associated userspace tools), and also to specific logical block devices managed by the software. DRBD device and DRBD block device are also often used for the latter, although these are examples of RAS syndrome.

It is free software released under the terms of the GNU General Public License version 2.

Contents

[edit] Mode of operation

DRBD layers logical block devices (conventionally named /dev/drbdX, where X is the device minor number) over existing local block devices on participating cluster nodes. Writes to the primary node are transferred to the lower-level block device and simultaneously propagated to the secondary node. The secondary node then transfers data to its corresponding lower-level block device. All read I/O is performed locally.

Should the primary node fail, a cluster management process promotes the secondary node to a primary state. This transition may require a subsequent verification of the integrity of the file system stacked on top of DRBD, by way of a filesystem check or a journal replay. When the failed ex-primary node returns, the system may (or may not) raise it to primary level again, after device data resynchronization. DRBD's synchronization algorithm is efficient in the sense that only those blocks that were changed during the outage must be resynchronized, rather than the device in its entirety.

DRBD is often deployed together with the Heartbeat cluster manager, although it does integrate with other cluster management frameworks. It integrates with virtualization solutions such as Xen, and may be used both within and on top of the Linux LVM stack.[1]

DRBD version 8, released in January 2007, introduced support for load-balancing configurations, allowing both nodes to access a particular DRBD in read/write mode with shared storage semantics.[2] Such a configuration requires the use of a distributed lock manager.

[edit] Advantages over shared cluster storage

Conventional computer cluster systems typically use some sort of shared storage for data being used by cluster resources. This approach has a number of disadvantages, which DRBD may help offset:

  • Shared storage resources usually introduce a single point of failure in the cluster setup — while each of the cluster nodes may fail without causing service interruption, storage failure almost inevitably causes service downtime. In DRBD, no such issues exist as the cluster resource data is replicated rather than shared.
  • Shared storage resources are particularly sensitive to split brain situations, where both cluster nodes are still alive, but lose all network connectivity between them. In such a scenario, each cluster node will assume that it is the only surviving node in the cluster, and take over all cluster resources. This may lead to potentially disastrous results when both nodes, for example, mount and write to file systems concurrently. Cluster administrators must thus carefully implement node fencing policies to avoid this. DRBD substantially mitigates this problem by keeping two replicated sets of data instead of one shared set.
  • Shared storage resources must typically be addressed over a SAN or NAS, which creates some overhead in read I/O. In DRBD that overhead is greatly reduced as all read operations are carried out locally.

[edit] Applications

Operating within the Linux kernel's block layer, DRBD is essentially workload agnostic. A DRBD can be used as the basis of

DRBD-based clusters are often employed for adding synchronous replication and high availability to file servers, relational databases (such as MySQL), and many other workloads.

[edit] Possible inclusion in Linux kernel

DRBD's authors submitted the software to the Linux kernel community in July 2007, for possible future inclusion of DRBD into the "vanilla" Linux kernel.[3] As of January 2008, the community's review is ongoing.

[edit] References

  1. ^ Haas, Florian; Reisner, Philipp; Ellenberg, Lars, The DRBD User's Guide, http://www.drbd.org/users-guide/, retrieved on 2008-03-31 
  2. ^ Reisner, Philipp (2005-10-11). "DRBD v8 - Replicated Storage with Shared Disk Semantics". Proceedings of the 12th International Linux System Technology Conference. 
  3. ^ Ellenberg, Lars (2007-07-21). "DRBD wants to go mainline". linux-kernel mailing list. http://lkml.org/lkml/2007/7/21/255. Retrieved on 2007-08-03. 

[edit] External links

Personal tools