Ceph (software): Difference between revisions

From David's Wiki
Line 23: Line 23:
==Resources==
==Resources==
* [https://louwrentius.com/understanding-ceph-open-source-scalable-storage.html Understanding Ceph]
* [https://louwrentius.com/understanding-ceph-open-source-scalable-storage.html Understanding Ceph]
* [https://www.marksei.com/ceph-pools-beginners-guide/ ceph pools beginners guide]

Revision as of 03:39, 14 September 2021

Note: I don't have any experience running this.

Architecture

Ceph Architecture

Algorithm

CRUSH

Erasure Coding

Overview

A ceph cluster consists of pools.

Pools

A pool is a partition to store objects and can either be a replicated pool or erasure code pool. Each pool stores the ownership of it's objects and has fixed parameters including the number of placement groups and the CRUSH rule.

Storage Types

Object Storage

Ceph Object Gateway

Block Device

Ceph Block Device

File System

Ceph File System

Kubernetes Deployment

See ceph-helm or Rook.

Resources