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 Object Storage (RADOS Gateway)


Ceph provides us more abstractions other than RBD images and CephFS to store and access data. One of the most widely used is the object storage system. An object storage system is one where files can be uploaded to and downloaded from storage servers using simple and conventional protocols such as HTTP.

Ceph's RADOS Gateway (RGW) storage service aims to fill this need by presenting Amazon S3-compatible and OpenStack Swift-compatible interfaces atop RADOS objects. There are abundant GUI clients, command line clients, and SDKs for every major programming language that supports Amazon S3. Clients talking to object storage systems need only to know how to leverage these widely-available tools to store and retrieve files.

In order to show how to provision an RGW service, we will again use the sandbox cluster we created in Chapter 5Deploying a Virtual Sandbox Cluster. When deploying in production you most likely will want to configure the RGW service on dedicated...