Book Image

Learning Ceph - Second Edition

By : Karan Singh, Vaibhav Bhembre, Anthony D'Atri
Book Image

Learning Ceph - Second Edition

By: Karan Singh, Vaibhav Bhembre, Anthony D'Atri

Overview of this book

Learning Ceph, Second Edition will give you all the skills you need to plan, deploy, and effectively manage your Ceph cluster. You will begin with the first module, where you will be introduced to Ceph use cases, its architecture, and core projects. In the next module, you will learn to set up a test cluster, using Ceph clusters and hardware selection. After you have learned to use Ceph clusters, the next module will teach you how to monitor cluster health, improve performance, and troubleshoot any issues that arise. In the last module, you will learn to integrate Ceph with other tools such as OpenStack, Glance, Manila, Swift, and Cinder. By the end of the book you will have learned to use Ceph effectively for your data storage requirements.
Table of Contents (18 chapters)
Title Page
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Ceph Block Device (RADOS Block Device)


Many deployments using platforms such as OpenStack or DigitalOcean manage and attach RBD images at the virtualization layer, so they appear to the guest operating system through SCSI or Virtio drivers. Here we'll also explore the use of the Linux kernel driver on arbitrary, even bare metal, systems.

The RADOS Block Device (RBD)—formerly known as the Ceph Block Device—provides block-based persistent storage to Ceph clients. The block device is presented as a traditional drive on the client machine. Such a drive can be used in various ways. It can be used as a raw block device or as a filesystem by partitioning, formatting, and subsequently mounting it.

RBD makes use of the librbd library and stores blocks of data striped over multiple OSDs in a Ceph cluster. RBD is built on the fundamental RADOS layer of Ceph. Thus every block device is spread over multiple Ceph nodes and delivers high performance and excellent reliability.

RBD is rich with enterprise-class...