SlideShare une entreprise Scribd logo
1  sur  71
Télécharger pour lire hors ligne
a unified distributed storage system


                sage weil
       ceph day – november 2, 2012
outline
●   why you should care
●   what is it, what it's for
●   how it works
    ●   architecture
●   how you can use it
    ●   librados
    ●   radosgw
    ●   RBD, the ceph block device
    ●   distributed file system
●   roadmap
●   why we do this, who we are
why should you care about another
        storage system?
requirements
●   diverse storage needs
    ●   object storage
    ●   block devices (for VMs) with snapshots, cloning
    ●   shared file system with POSIX, coherent caches
    ●   structured data... files, block devices, or objects?
●   scale
    ●   terabytes, petabytes, exabytes
    ●   heterogeneous hardware
    ●   reliability and fault tolerance
time
●   ease of administration
●   no manual data migration, load balancing
●   painless scaling
    ●   expansion and contraction
    ●   seamless migration
cost
●   linear function of size or performance
●   incremental expansion
    ●   no fork-lift upgrades
●   no vendor lock-in
    ●   choice of hardware
    ●   choice of software
●   open
what is ceph?
unified storage system
●   objects
    ●   native
    ●   RESTful
●   block
    ●   thin provisioning, snapshots, cloning
●   file
    ●   strong consistency, snapshots
APP
      APP                      APP
                               APP                  HOST/VM
                                                    HOST/VM                    CLIENT
                                                                               CLIENT



                         RADOSGW
                         RADOSGW                RBD
                                                RBD                        CEPH FS
                                                                           CEPH FS
LIBRADOS
 LIBRADOS
                          A bucket-based
                           A bucket-based         A reliable and fully-
                                                   A reliable and fully-    A POSIX-compliant
                                                                             A POSIX-compliant
   A library allowing
    A library allowing    REST gateway,
                           REST gateway,          distributed block
                                                   distributed block        distributed file
                                                                             distributed file
   apps to directly
    apps to directly      compatible with S3
                           compatible with S3     device, with aaLinux
                                                   device, with Linux       system, with aa
                                                                             system, with
   access RADOS,
    access RADOS,         and Swift
                           and Swift              kernel client and aa
                                                   kernel client and        Linux kernel client
                                                                             Linux kernel client
   with support for
    with support for                              QEMU/KVM driver
                                                   QEMU/KVM driver          and support for
                                                                             and support for
   C, C++, Java,
    C, C++, Java,                                                           FUSE
                                                                             FUSE
   Python, Ruby,
    Python, Ruby,
   and PHP
    and PHP




RADOS
RADOS

 A reliable, autonomous, distributed object store comprised of self-healing, self-managing,
  A reliable, autonomous, distributed object store comprised of self-healing, self-managing,
 intelligent storage nodes
  intelligent storage nodes
distributed storage system
●   data center scale
    ●   10s to 10,000s of machines
    ●   terabytes to exabytes
●   fault tolerant
    ●   no single point of failure
    ●   commodity hardware
●   self-managing, self-healing
ceph object model
●   pools
    ●   1s to 100s
    ●   independent namespaces or object collections
    ●   replication level, placement policy
●   objects
    ●   bazillions
    ●   blob of data (bytes to gigabytes)
    ●   attributes (e.g., “version=12”; bytes to kilobytes)
    ●   key/value bundle (bytes to gigabytes)
why start with objects?
●   more useful than (disk) blocks
    ●   names in a single flat namespace
    ●   variable size
    ●   simple API with rich semantics
●   more scalable than files
    ●   no hard-to-distribute hierarchy
    ●   update semantics do not span objects
    ●   workload is trivially parallel
DISK
                   DISK

                   DISK
                   DISK

                   DISK
                   DISK

HUMAN
HUMAN   COMPUTER
        COMPUTER   DISK
                   DISK

                   DISK
                   DISK

                   DISK
                   DISK

                   DISK
                   DISK
DISK
                   DISK

                   DISK
                   DISK
HUMAN
HUMAN
                   DISK
                   DISK

HUMAN
HUMAN   COMPUTER
        COMPUTER   DISK
                   DISK

                   DISK
                   DISK
HUMAN
HUMAN
                   DISK
                   DISK

                   DISK
                   DISK
HUMAN
    HUMAN      HUMAN
                HUMAN

                        HUMAN
                         HUMAN
 HUMAN
  HUMAN                                                       DISK
                                                              DISK
               HUMAN
                HUMAN
HUMAN
 HUMAN                                                        DISK
                                                              DISK
 HUMAN
  HUMAN        HUMAN
                HUMAN
                                                              DISK
                                                              DISK
                                                              DISK
                                                              DISK
     HUMAN
      HUMAN
                                                              DISK
                                                              DISK
            HUMAN
             HUMAN
HUMAN
 HUMAN
                                                              DISK
                                                              DISK
                                    (COMPUTER))
                                     (COMPUTER
             HUMAN
              HUMAN
                                                              DISK
                                                              DISK
  HUMAN            HUMAN
                    HUMAN
   HUMAN                                                      DISK
                                                              DISK
             HUMAN
              HUMAN
 HUMAN
  HUMAN                                                       DISK
                                                              DISK
              HUMAN
               HUMAN                                          DISK
                                                              DISK
   HUMAN
    HUMAN                                                     DISK
                                                              DISK
                     HUMAN
                      HUMAN
     HUMAN
      HUMAN                                                   DISK
                                                              DISK
                     HUMAN
                      HUMAN

          HUMAN
           HUMAN
                                 (actually more like this…)
COMPUTER
        COMPUTER   DISK
                   DISK
        COMPUTER
        COMPUTER   DISK
                   DISK
        COMPUTER
        COMPUTER   DISK
                   DISK
HUMAN
HUMAN
        COMPUTER
        COMPUTER   DISK
                   DISK
        COMPUTER
        COMPUTER   DISK
                   DISK
        COMPUTER
        COMPUTER   DISK
                   DISK
HUMAN
HUMAN
        COMPUTER
        COMPUTER   DISK
                   DISK
        COMPUTER
        COMPUTER   DISK
                   DISK
        COMPUTER
        COMPUTER   DISK
                   DISK
HUMAN
HUMAN
        COMPUTER
        COMPUTER   DISK
                   DISK
        COMPUTER
        COMPUTER   DISK
                   DISK
        COMPUTER
        COMPUTER   DISK
                   DISK
OSD    OSD    OSD    OSD    OSD




 FS     FS     FS    FS     FS     btrfs
                                   xfs
                                   ext4
DISK   DISK   DISK   DISK   DISK




  M            M             M
Monitors:
    •
        Maintain cluster membership and state



M
    •
        Provide consensus for distributed
        decision-making
    •
        Small, odd number
    •
        These do not serve stored objects to
        clients



    Object Storage Daemons (OSDs):
    •
        At least three in a cluster
    •
        One per disk or RAID group
    •
        Serve stored objects to clients
    •
        Intelligently peer to perform
        replication tasks
HUMAN




        M




M           M
data distribution
●   all objects are replicated N times
●   objects are automatically placed, balanced, migrated
    in a dynamic cluster
●   must consider physical infrastructure
    ●   ceph-osds on hosts in racks in rows in data centers

●   three approaches
    ●   pick a spot; remember where you put it
    ●   pick a spot; write down where you put it
    ●   calculate where to put it, where to find it
CRUSH
•   Pseudo-random placement
    algorithm
•   Fast calculation, no lookup
•   Repeatable, deterministic
•   Ensures even distribution
•   Stable mapping
    •   Limited data migration
•   Rule-based configuration
    •   specifiable replication
    •   infrastructure topology aware
    •   allows weighting
10 10 01 01 10 10 01 11 01 10
         10 10 01 01 10 10 01 11 01 10

                                    hash(object name) % num pg

10
 10   10
       10   01
             01   01
                   01   10
                         10   10
                               10    01
                                      01   11
                                            11   01
                                                  01   10
                                                        10




                                    CRUSH(pg, cluster state, policy)
10 10 01 01 10 10 01 11 01 10
        10 10 01 01 10 10 01 11 01 10




10
 10   10
       10   01
             01   01
                   01   10
                         10   10
                               10   01
                                     01   11
                                           11   01
                                                 01   10
                                                       10
RADOS
●   monitors publish osd map that describes cluster state
    ●   ceph-osd node status (up/down, weight, IP)               M
    ●   CRUSH function specifying desired data distribution
●   object storage daemons (OSDs)
    ●   safely replicate and store object
    ●   migrate data as the cluster changes over time
    ●   coordinate based on shared view of reality
●   decentralized, distributed approach allows
    ●   massive scales (10,000s of servers or more)
    ●   the illusion of a single copy with consistent behavior
CLIENT
CLIENT

         ??
CLIENT

         ??
APP
      APP                     APP
                              APP                   HOST/VM
                                                    HOST/VM                    CLIENT
                                                                               CLIENT



                        RADOSGW
                        RADOSGW                RBD
                                               RBD                         CEPH FS
                                                                           CEPH FS
LIBRADOS
                         A bucket-based
                          A bucket-based          A reliable and fully-
                                                   A reliable and fully-    A POSIX-compliant
                                                                             A POSIX-compliant
   A library allowing    REST gateway,
                          REST gateway,           distributed block
                                                   distributed block        distributed file
                                                                             distributed file
   apps to directly      compatible with S3
                          compatible with S3      device, with aaLinux
                                                   device, with Linux       system, with aa
                                                                             system, with
   access RADOS,         and Swift
                          and Swift               kernel client and aa
                                                   kernel client and        Linux kernel client
                                                                             Linux kernel client
   with support for                               QEMU/KVM driver
                                                   QEMU/KVM driver          and support for
                                                                             and support for
   C, C++, Java,                                                            FUSE
                                                                             FUSE
   Python, Ruby,
   and PHP




RADOS
RADOS

 A reliable, autonomous, distributed object store comprised of self-healing, self-managing,
  A reliable, autonomous, distributed object store comprised of self-healing, self-managing,
 intelligent storage nodes
  intelligent storage nodes
APP
     APP
    LIBRADOS
     LIBRADOS

                native




    M
    M
M
M               M
                M
LIBRADOS



L
    • Provides direct access to
      RADOS for applications
    • C, C++, Python, PHP, Java
    • No HTTP overhead
APP
      APP                      APP
                               APP                  HOST/VM
                                                    HOST/VM                    CLIENT
                                                                               CLIENT



                         RADOSGW               RBD
                                               RBD                         CEPH FS
                                                                           CEPH FS
LIBRADOS
 LIBRADOS
                          A bucket-based          A reliable and fully-
                                                   A reliable and fully-    A POSIX-compliant
                                                                             A POSIX-compliant
   A library allowing
    A library allowing    REST gateway,           distributed block
                                                   distributed block        distributed file
                                                                             distributed file
   apps to directly
    apps to directly      compatible with S3      device, with aaLinux
                                                   device, with Linux       system, with aa
                                                                             system, with
   access RADOS,
    access RADOS,         and Swift               kernel client and aa
                                                   kernel client and        Linux kernel client
                                                                             Linux kernel client
   with support for
    with support for                              QEMU/KVM driver
                                                   QEMU/KVM driver          and support for
                                                                             and support for
   C, C++, Java,
    C, C++, Java,                                                           FUSE
                                                                             FUSE
   Python, Ruby,
    Python, Ruby,
   and PHP
    and PHP




RADOS
RADOS

 A reliable, autonomous, distributed object store comprised of self-healing, self-managing,
  A reliable, autonomous, distributed object store comprised of self-healing, self-managing,
 intelligent storage nodes
  intelligent storage nodes
APP
  APP                 APP
                      APP
                                  REST




RADOSGW
RADOSGW           RADOSGW
                  RADOSGW
  LIBRADOS
   LIBRADOS           LIBRADOS
                       LIBRADOS


                                         native




              M
              M
        M
        M         M
                  M
RADOS Gateway:
• REST-based interface to
  RADOS
• Supports buckets,
  accounting
• Compatible with S3 and
  Swift applications
APP
      APP                      APP
                               APP                  HOST/VM
                                                    HOST/VM                    CLIENT
                                                                               CLIENT



                         RADOSGW
                         RADOSGW                RBD                       CEPH FS
                                                                          CEPH FS
LIBRADOS
 LIBRADOS
                          A bucket-based
                           A bucket-based         A reliable and fully-    A POSIX-compliant
                                                                            A POSIX-compliant
   A library allowing
    A library allowing    REST gateway,
                           REST gateway,          distributed block        distributed file
                                                                            distributed file
   apps to directly
    apps to directly      compatible with S3
                           compatible with S3     device, with a Linux     system, with aa
                                                                            system, with
   access RADOS,
    access RADOS,         and Swift
                           and Swift              kernel client and a      Linux kernel client
                                                                            Linux kernel client
   with support for
    with support for                              QEMU/KVM driver          and support for
                                                                            and support for
   C, C++, Java,
    C, C++, Java,                                                          FUSE
                                                                            FUSE
   Python, Ruby,
    Python, Ruby,
   and PHP
    and PHP




RADOS
RADOS

 A reliable, autonomous, distributed object store comprised of self-healing, self-managing,
  A reliable, autonomous, distributed object store comprised of self-healing, self-managing,
 intelligent storage nodes
  intelligent storage nodes
COMPUTER
                  COMPUTER   DISK
                             DISK
                  COMPUTER
                  COMPUTER   DISK
                             DISK
                  COMPUTER
                  COMPUTER   DISK
                             DISK
                  COMPUTER
                  COMPUTER   DISK
                             DISK
                  COMPUTER
                  COMPUTER   DISK
                             DISK
                  COMPUTER
                  COMPUTER   DISK
                             DISK
COMPUTER
COMPUTER          COMPUTER
                  COMPUTER   DISK
                             DISK
           DISK
           DISK
                  COMPUTER
                  COMPUTER   DISK
                             DISK
                  COMPUTER
                  COMPUTER   DISK
                             DISK
                  COMPUTER
                  COMPUTER   DISK
                             DISK
                  COMPUTER
                  COMPUTER   DISK
                             DISK
                  COMPUTER
                  COMPUTER   DISK
                             DISK
COMPUTER
     COMPUTER   DISK
                DISK
     COMPUTER
     COMPUTER   DISK
                DISK
     COMPUTER
     COMPUTER   DISK
                DISK
     COMPUTER
     COMPUTER   DISK
                DISK
VM
VM   COMPUTER
     COMPUTER   DISK
                DISK
     COMPUTER
     COMPUTER   DISK
                DISK
VM
VM   COMPUTER   DISK
     COMPUTER   DISK
     COMPUTER
     COMPUTER   DISK
                DISK
VM
VM
     COMPUTER
     COMPUTER   DISK
                DISK
     COMPUTER
     COMPUTER   DISK
                DISK
     COMPUTER
     COMPUTER   DISK
                DISK
     COMPUTER
     COMPUTER   DISK
                DISK
VM
            VM




VIRTUALIZATION CONTAINER
VIRTUALIZATION CONTAINER
            LIBRBD
             LIBRBD
         LIBRADOS
          LIBRADOS




        M
        M
    M
    M                 M
                      M
CONTAINER
CONTAINER         VM
                  VM       CONTAINER
                           CONTAINER
   LIBRBD
    LIBRBD                    LIBRBD
                               LIBRBD
  LIBRADOS
   LIBRADOS                  LIBRADOS
                              LIBRADOS




                  M
                  M
              M
              M        M
                       M
HOST
        HOST
    KRBD (KERNEL MODULE)
     KRBD (KERNEL MODULE)
         LIBRADOS
          LIBRADOS




       M
       M
M
M                       M
                        M
RADOS Block Device:
• Storage of virtual disks in RADOS
• Decouples VMs and containers
 • Live migration!
• Images are striped across the cluster
• Snapshots!
• Support in
  • Qemu/KVM
  • OpenStack, CloudStack
  • Mainline Linux kernel
HOW DO YOU
    SPIN UP
THOUSANDS OF VMs
   INSTANTLY
      AND
  EFFICIENTLY?
instant copy




144
      0        0         0   0   = 144
write
                          CLIENT
                  write


                  write


                  write




144   4   = 148
read


             read
                    CLIENT

             read




144   4   = 148
APP
      APP                      APP
                               APP                  HOST/VM
                                                    HOST/VM                    CLIENT
                                                                               CLIENT



                         RADOSGW
                         RADOSGW                RBD
                                                RBD                        CEPH FS
LIBRADOS
 LIBRADOS
                          A bucket-based
                           A bucket-based         A reliable and fully-
                                                   A reliable and fully-    A POSIX-compliant
   A library allowing
    A library allowing    REST gateway,
                           REST gateway,          distributed block
                                                   distributed block        distributed file
   apps to directly
    apps to directly      compatible with S3
                           compatible with S3     device, with aaLinux
                                                   device, with Linux       system, with a
   access RADOS,
    access RADOS,         and Swift
                           and Swift              kernel client and aa
                                                   kernel client and        Linux kernel client
   with support for
    with support for                              QEMU/KVM driver
                                                   QEMU/KVM driver          and support for
   C, C++, Java,
    C, C++, Java,                                                           FUSE
   Python, Ruby,
    Python, Ruby,
   and PHP
    and PHP




RADOS
RADOS

 A reliable, autonomous, distributed object store comprised of self-healing, self-managing,
  A reliable, autonomous, distributed object store comprised of self-healing, self-managing,
 intelligent storage nodes
  intelligent storage nodes
CLIENT
               CLIENT



metadata           01
                    01   data
                   10
                    10




               M
               M
           M
           M             M
                         M
M
    M
M
M       M
        M
Metadata Server
• Manages metadata for a
  POSIX-compliant shared
  filesystem
 • Directory hierarchy
 • File metadata (owner,
   timestamps, mode, etc.)
• Stores metadata in RADOS
• Does not serve file data to
  clients
• Only required for shared
  filesystem
one tree




three metadata servers


                               ??
DYNAMIC SUBTREE PARTITIONING
recursive accounting
●   ceph-mds tracks recursive directory stats
    ●   file sizes
    ●   file and directory counts
    ●   modification time
●
    virtual xattrs present full stats
●
    efficient
        $ ls ­alSh | head
        total 0
        drwxr­xr­x 1 root            root      9.7T 2011­02­04 15:51 .
        drwxr­xr­x 1 root            root      9.7T 2010­12­16 15:06 ..
        drwxr­xr­x 1 pomceph         pg4194980 9.6T 2011­02­24 08:25 pomceph
        drwxr­xr­x 1 mcg_test1       pg2419992  23G 2011­02­02 08:57 mcg_test1
        drwx­­x­­­ 1 luko            adm        19G 2011­01­21 12:17 luko
        drwx­­x­­­ 1 eest            adm        14G 2011­02­04 16:29 eest
        drwxr­xr­x 1 mcg_test2       pg2419992 3.0G 2011­02­02 09:34 mcg_test2
        drwx­­x­­­ 1 fuzyceph        adm       1.5G 2011­01­18 10:46 fuzyceph
        drwxr­xr­x 1 dallasceph      pg275     596M 2011­01­14 10:06 dallasceph
snapshots
●   volume or subvolume snapshots unusable at petabyte scale
    ●   snapshot arbitrary subdirectories
●   simple interface
    ●   hidden '.snap' directory
    ●
        no special tools


        $ mkdir foo/.snap/one      # create snapshot
        $ ls foo/.snap
        one
        $ ls foo/bar/.snap
        _one_1099511627776         # parent's snap name is mangled
        $ rm foo/myfile
        $ ls -F foo
        bar/
        $ ls -F foo/.snap/one
        myfile bar/
        $ rmdir foo/.snap/one      # remove snapshot
multiple protocols, implementations
●   Linux kernel client
    ●   mount -t ceph 1.2.3.4:/ /mnt
                                        NFS            SMB/CIFS
    ●   export (NFS), Samba (CIFS)
●   ceph-fuse                           Ganesha            Samba
                                         libcephfs          libcephfs
●   libcephfs.so
    ●   your app                        Hadoop             your app
                                         libcephfs          libcephfs
    ●   Samba (CIFS)
    ●   Ganesha (NFS)                          ceph-fuse
                                       ceph        fuse
    ●   Hadoop (map/reduce)                       kernel
APP
      APP                      APP
                               APP                  HOST/VM
                                                    HOST/VM                    CLIENT
                                                                               CLIENT



                         RADOSGW
                         RADOSGW                RBD
                                                RBD                        CEPH FS
                                                                           CEPH FS
LIBRADOS
 LIBRADOS
                          A bucket-based
                           A bucket-based         A reliable and fully-
                                                   A reliable and fully-    A POSIX-compliant
                                                                             A POSIX-compliant
   A library allowing
    A library allowing    REST gateway,
                           REST gateway,          distributed block
                                                   distributed block        distributed file
                                                                             distributed file
   apps to directly
    apps to directly      compatible with S3
                           compatible with S3     device, with aaLinux
                                                   device, with Linux       system, with aa
                                                                             system, with
   access RADOS,
    access RADOS,         and Swift
                           and Swift              kernel client and aa
                                                   kernel client and        Linux kernel client
                                                                             Linux kernel client
   with support for
    with support for                              QEMU/KVM driver
                                                   QEMU/KVM driver          and support for
                                                                             and support for
   C, C++, Java,
    C, C++, Java,                                                           FUSE
                                                                             FUSE
   Python, Ruby,
    Python, Ruby,
   and PHP
    and PHP                AWESOME                 AWESOME
                                                                              NEARLY
 AWESOME                                                                     AWESOME


RADOS
RADOS                                    AWESOME
 A reliable, autonomous, distributed object store comprised of self-healing, self-managing,
  A reliable, autonomous, distributed object store comprised of self-healing, self-managing,
 intelligent storage nodes
  intelligent storage nodes
current status
●   argonaut stable release v0.48
    ●   rados, RBD, radosgw
●   bobtail stable release v0.55
    ●   RBD cloning
    ●   improved performance, scaling, failure behavior
    ●   radosgw API, performance improvements
    ●   freeze in ~1 week, release in ~4 weeks
roadmap
●   file system
    ●   pivot in engineering focus
    ●   CIFS (Samba), NFS (Ganesha), Hadoop
●   RBD
    ●   Xen integration, iSCSI
●   radosgw
    ●   Keystone integration
●   RADOS
    ●   geo-replication
    ●   PG split
why we do this
●   limited options for scalable open source storage
●   proprietary solutions
    ●   expensive
    ●   don't scale (well or out)
    ●   marry hardware and software
●   users hungry for alternatives
    ●   scalability
    ●   cost
    ●   features
two fields
●   green: cloud, big data
    ●   incumbents don't have a viable solution
    ●   most players can't afford to build their own
    ●   strong demand for open source solutions
●   brown: traditional SAN, NAS; enterprise
    ●   incumbents struggle to scale out
    ●   can't compete on price with open solutions
licensing
●   <yawn>
●   promote adoption
●   enable community development
●   prevent ceph from becoming proprietary
●   allow organic commercialization
ceph license
●   LGPLv2
    ●   “copyleft”
        –   free distribution
        –   allow derivative works
        –   changes you distribute/sell must be shared
    ●   ok to link to proprietary code
        –   allow proprietary products to incude and build on ceph
        –   does not allow proprietary derivatives of ceph
fragmented copyright
●   we do not require copyright assignment from
    contributors
    ●   no single person or entity owns all of ceph
    ●   no single entity can make ceph proprietary
●   strong community
    ●   many players make ceph a safe technology bet
    ●   project can outlive any single business
why its important
●   ceph is an ingredient
    ●   we need to play nice in a larger ecosystem
    ●   community will be key to ceph's success
●   truly open source solutions are disruptive
    ●   open is a competitive advantage
        –   frictionless integration with projects, platforms, tools
        –   freedom to innovate on protocols
        –   leverage community testing, development resources
        –   open collaboration is efficient way to build technology
who we are
●   Ceph created at UC Santa Cruz (2004-2007)
●   supported by DreamHost (2008-2011)
●   Inktank (2012)
    ●   Los Angeles, Sunnyvale, San Francisco, remote
●   growing user and developer community
    ●   Linux distros, users, cloud stacks, SIs, OEMs


                       http://ceph.com/
thanks




sage weil
sage@inktank.com   http://github.com/ceph
@liewegas          http://ceph.com/
why we like btrfs
●   pervasive checksumming
●   snapshots, copy-on-write
●   efficient metadata (xattrs)
●   inline data for small files
●   transparent compression
●   integrated volume management
    ●   software RAID, mirroring, error recovery
    ●   SSD-aware
●   online fsck
●   active development community

Contenu connexe

En vedette

Portfolio digital fabio2
Portfolio digital fabio2Portfolio digital fabio2
Portfolio digital fabio2Dulce Gomes
 
Estudo I-Group: UFC e TUF nas mídias sociais
Estudo I-Group: UFC e TUF nas mídias sociaisEstudo I-Group: UFC e TUF nas mídias sociais
Estudo I-Group: UFC e TUF nas mídias sociaisRicardo Almeida
 
Sawyer, robert j recuerdos del futuro (flash forward).pdf
Sawyer, robert j   recuerdos del futuro (flash forward).pdfSawyer, robert j   recuerdos del futuro (flash forward).pdf
Sawyer, robert j recuerdos del futuro (flash forward).pdfAdrian Moure
 

En vedette (6)

Norma 02 jne_2014
Norma 02 jne_2014Norma 02 jne_2014
Norma 02 jne_2014
 
Charla MARCO CRESCI
Charla MARCO CRESCICharla MARCO CRESCI
Charla MARCO CRESCI
 
Futbol
FutbolFutbol
Futbol
 
Portfolio digital fabio2
Portfolio digital fabio2Portfolio digital fabio2
Portfolio digital fabio2
 
Estudo I-Group: UFC e TUF nas mídias sociais
Estudo I-Group: UFC e TUF nas mídias sociaisEstudo I-Group: UFC e TUF nas mídias sociais
Estudo I-Group: UFC e TUF nas mídias sociais
 
Sawyer, robert j recuerdos del futuro (flash forward).pdf
Sawyer, robert j   recuerdos del futuro (flash forward).pdfSawyer, robert j   recuerdos del futuro (flash forward).pdf
Sawyer, robert j recuerdos del futuro (flash forward).pdf
 

Similaire à Ceph Day Nov 2012 - Sage Weil

Webinar - Advance Ceph Features
Webinar - Advance Ceph FeaturesWebinar - Advance Ceph Features
Webinar - Advance Ceph FeaturesCeph Community
 
Storage Developer Conference - 09/19/2012
Storage Developer Conference - 09/19/2012Storage Developer Conference - 09/19/2012
Storage Developer Conference - 09/19/2012Ceph Community
 
Storing VMs with Cinder and Ceph RBD.pdf
Storing VMs with Cinder and Ceph RBD.pdfStoring VMs with Cinder and Ceph RBD.pdf
Storing VMs with Cinder and Ceph RBD.pdfOpenStack Foundation
 
Docker: The Blue Whale of Awesomness
Docker: The Blue Whale of AwesomnessDocker: The Blue Whale of Awesomness
Docker: The Blue Whale of AwesomnessSigfred Balatan Jr.
 
New Features for Ceph with Cinder and Beyond
New Features for Ceph with Cinder and BeyondNew Features for Ceph with Cinder and Beyond
New Features for Ceph with Cinder and BeyondOpenStack Foundation
 
Distributed Stream Processing on Fluentd / #fluentd
Distributed Stream Processing on Fluentd / #fluentdDistributed Stream Processing on Fluentd / #fluentd
Distributed Stream Processing on Fluentd / #fluentdSATOSHI TAGOMORI
 
End of RAID as we know it with Ceph Replication
End of RAID as we know it with Ceph ReplicationEnd of RAID as we know it with Ceph Replication
End of RAID as we know it with Ceph ReplicationCeph Community
 
Ceph Intro and Architectural Overview by Ross Turk
Ceph Intro and Architectural Overview by Ross TurkCeph Intro and Architectural Overview by Ross Turk
Ceph Intro and Architectural Overview by Ross Turkbuildacloud
 
Storage with Ceph (OSDC 2013)
Storage with Ceph (OSDC 2013)Storage with Ceph (OSDC 2013)
Storage with Ceph (OSDC 2013)hastexo
 
DreamObjects - Ceph Day Nov 2012
DreamObjects - Ceph Day Nov 2012DreamObjects - Ceph Day Nov 2012
DreamObjects - Ceph Day Nov 2012Ceph Community
 
Hadoop and WANdisco: The Future of Big Data
Hadoop and WANdisco: The Future of Big DataHadoop and WANdisco: The Future of Big Data
Hadoop and WANdisco: The Future of Big DataWANdisco Plc
 
Ceph Day NYC: The Future of CephFS
Ceph Day NYC: The Future of CephFSCeph Day NYC: The Future of CephFS
Ceph Day NYC: The Future of CephFSCeph Community
 
Webinar - Getting Started With Ceph
Webinar - Getting Started With CephWebinar - Getting Started With Ceph
Webinar - Getting Started With CephCeph Community
 
London Ceph Day: The Future of CephFS
London Ceph Day: The Future of CephFSLondon Ceph Day: The Future of CephFS
London Ceph Day: The Future of CephFSCeph Community
 
Rugged DevOps Will help you build ur cloudz
Rugged DevOps Will help you build ur cloudzRugged DevOps Will help you build ur cloudz
Rugged DevOps Will help you build ur cloudzJames Wickett
 
Docker Introduction
Docker IntroductionDocker Introduction
Docker IntroductionHao Fan
 
PHP in the Cloud
PHP in the CloudPHP in the Cloud
PHP in the CloudAcquia
 

Similaire à Ceph Day Nov 2012 - Sage Weil (20)

Webinar - Advance Ceph Features
Webinar - Advance Ceph FeaturesWebinar - Advance Ceph Features
Webinar - Advance Ceph Features
 
Storage Developer Conference - 09/19/2012
Storage Developer Conference - 09/19/2012Storage Developer Conference - 09/19/2012
Storage Developer Conference - 09/19/2012
 
Storing VMs with Cinder and Ceph RBD.pdf
Storing VMs with Cinder and Ceph RBD.pdfStoring VMs with Cinder and Ceph RBD.pdf
Storing VMs with Cinder and Ceph RBD.pdf
 
Block Storage For VMs With Ceph
Block Storage For VMs With CephBlock Storage For VMs With Ceph
Block Storage For VMs With Ceph
 
Docker: The Blue Whale of Awesomness
Docker: The Blue Whale of AwesomnessDocker: The Blue Whale of Awesomness
Docker: The Blue Whale of Awesomness
 
New Features for Ceph with Cinder and Beyond
New Features for Ceph with Cinder and BeyondNew Features for Ceph with Cinder and Beyond
New Features for Ceph with Cinder and Beyond
 
Distributed Stream Processing on Fluentd / #fluentd
Distributed Stream Processing on Fluentd / #fluentdDistributed Stream Processing on Fluentd / #fluentd
Distributed Stream Processing on Fluentd / #fluentd
 
End of RAID as we know it with Ceph Replication
End of RAID as we know it with Ceph ReplicationEnd of RAID as we know it with Ceph Replication
End of RAID as we know it with Ceph Replication
 
Ceph Intro and Architectural Overview by Ross Turk
Ceph Intro and Architectural Overview by Ross TurkCeph Intro and Architectural Overview by Ross Turk
Ceph Intro and Architectural Overview by Ross Turk
 
Storage with Ceph (OSDC 2013)
Storage with Ceph (OSDC 2013)Storage with Ceph (OSDC 2013)
Storage with Ceph (OSDC 2013)
 
DreamObjects - Ceph Day Nov 2012
DreamObjects - Ceph Day Nov 2012DreamObjects - Ceph Day Nov 2012
DreamObjects - Ceph Day Nov 2012
 
Hadoop and WANdisco: The Future of Big Data
Hadoop and WANdisco: The Future of Big DataHadoop and WANdisco: The Future of Big Data
Hadoop and WANdisco: The Future of Big Data
 
Ceph Day NYC: The Future of CephFS
Ceph Day NYC: The Future of CephFSCeph Day NYC: The Future of CephFS
Ceph Day NYC: The Future of CephFS
 
Webinar - Getting Started With Ceph
Webinar - Getting Started With CephWebinar - Getting Started With Ceph
Webinar - Getting Started With Ceph
 
London Ceph Day: The Future of CephFS
London Ceph Day: The Future of CephFSLondon Ceph Day: The Future of CephFS
London Ceph Day: The Future of CephFS
 
Rugged DevOps Will help you build ur cloudz
Rugged DevOps Will help you build ur cloudzRugged DevOps Will help you build ur cloudz
Rugged DevOps Will help you build ur cloudz
 
Docker Introduction
Docker IntroductionDocker Introduction
Docker Introduction
 
Hadoop on VMware
Hadoop on VMwareHadoop on VMware
Hadoop on VMware
 
PHP in the Cloud
PHP in the CloudPHP in the Cloud
PHP in the Cloud
 
librados
libradoslibrados
librados
 

Ceph Day Nov 2012 - Sage Weil

  • 1. a unified distributed storage system sage weil ceph day – november 2, 2012
  • 2. outline ● why you should care ● what is it, what it's for ● how it works ● architecture ● how you can use it ● librados ● radosgw ● RBD, the ceph block device ● distributed file system ● roadmap ● why we do this, who we are
  • 3. why should you care about another storage system?
  • 4. requirements ● diverse storage needs ● object storage ● block devices (for VMs) with snapshots, cloning ● shared file system with POSIX, coherent caches ● structured data... files, block devices, or objects? ● scale ● terabytes, petabytes, exabytes ● heterogeneous hardware ● reliability and fault tolerance
  • 5. time ● ease of administration ● no manual data migration, load balancing ● painless scaling ● expansion and contraction ● seamless migration
  • 6. cost ● linear function of size or performance ● incremental expansion ● no fork-lift upgrades ● no vendor lock-in ● choice of hardware ● choice of software ● open
  • 8. unified storage system ● objects ● native ● RESTful ● block ● thin provisioning, snapshots, cloning ● file ● strong consistency, snapshots
  • 9. APP APP APP APP HOST/VM HOST/VM CLIENT CLIENT RADOSGW RADOSGW RBD RBD CEPH FS CEPH FS LIBRADOS LIBRADOS A bucket-based A bucket-based A reliable and fully- A reliable and fully- A POSIX-compliant A POSIX-compliant A library allowing A library allowing REST gateway, REST gateway, distributed block distributed block distributed file distributed file apps to directly apps to directly compatible with S3 compatible with S3 device, with aaLinux device, with Linux system, with aa system, with access RADOS, access RADOS, and Swift and Swift kernel client and aa kernel client and Linux kernel client Linux kernel client with support for with support for QEMU/KVM driver QEMU/KVM driver and support for and support for C, C++, Java, C, C++, Java, FUSE FUSE Python, Ruby, Python, Ruby, and PHP and PHP RADOS RADOS A reliable, autonomous, distributed object store comprised of self-healing, self-managing, A reliable, autonomous, distributed object store comprised of self-healing, self-managing, intelligent storage nodes intelligent storage nodes
  • 10. distributed storage system ● data center scale ● 10s to 10,000s of machines ● terabytes to exabytes ● fault tolerant ● no single point of failure ● commodity hardware ● self-managing, self-healing
  • 11. ceph object model ● pools ● 1s to 100s ● independent namespaces or object collections ● replication level, placement policy ● objects ● bazillions ● blob of data (bytes to gigabytes) ● attributes (e.g., “version=12”; bytes to kilobytes) ● key/value bundle (bytes to gigabytes)
  • 12. why start with objects? ● more useful than (disk) blocks ● names in a single flat namespace ● variable size ● simple API with rich semantics ● more scalable than files ● no hard-to-distribute hierarchy ● update semantics do not span objects ● workload is trivially parallel
  • 13. DISK DISK DISK DISK DISK DISK HUMAN HUMAN COMPUTER COMPUTER DISK DISK DISK DISK DISK DISK DISK DISK
  • 14. DISK DISK DISK DISK HUMAN HUMAN DISK DISK HUMAN HUMAN COMPUTER COMPUTER DISK DISK DISK DISK HUMAN HUMAN DISK DISK DISK DISK
  • 15. HUMAN HUMAN HUMAN HUMAN HUMAN HUMAN HUMAN HUMAN DISK DISK HUMAN HUMAN HUMAN HUMAN DISK DISK HUMAN HUMAN HUMAN HUMAN DISK DISK DISK DISK HUMAN HUMAN DISK DISK HUMAN HUMAN HUMAN HUMAN DISK DISK (COMPUTER)) (COMPUTER HUMAN HUMAN DISK DISK HUMAN HUMAN HUMAN HUMAN DISK DISK HUMAN HUMAN HUMAN HUMAN DISK DISK HUMAN HUMAN DISK DISK HUMAN HUMAN DISK DISK HUMAN HUMAN HUMAN HUMAN DISK DISK HUMAN HUMAN HUMAN HUMAN (actually more like this…)
  • 16. COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK HUMAN HUMAN COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK HUMAN HUMAN COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK HUMAN HUMAN COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK
  • 17. OSD OSD OSD OSD OSD FS FS FS FS FS btrfs xfs ext4 DISK DISK DISK DISK DISK M M M
  • 18. Monitors: • Maintain cluster membership and state M • Provide consensus for distributed decision-making • Small, odd number • These do not serve stored objects to clients Object Storage Daemons (OSDs): • At least three in a cluster • One per disk or RAID group • Serve stored objects to clients • Intelligently peer to perform replication tasks
  • 19. HUMAN M M M
  • 20. data distribution ● all objects are replicated N times ● objects are automatically placed, balanced, migrated in a dynamic cluster ● must consider physical infrastructure ● ceph-osds on hosts in racks in rows in data centers ● three approaches ● pick a spot; remember where you put it ● pick a spot; write down where you put it ● calculate where to put it, where to find it
  • 21. CRUSH • Pseudo-random placement algorithm • Fast calculation, no lookup • Repeatable, deterministic • Ensures even distribution • Stable mapping • Limited data migration • Rule-based configuration • specifiable replication • infrastructure topology aware • allows weighting
  • 22. 10 10 01 01 10 10 01 11 01 10 10 10 01 01 10 10 01 11 01 10 hash(object name) % num pg 10 10 10 10 01 01 01 01 10 10 10 10 01 01 11 11 01 01 10 10 CRUSH(pg, cluster state, policy)
  • 23. 10 10 01 01 10 10 01 11 01 10 10 10 01 01 10 10 01 11 01 10 10 10 10 10 01 01 01 01 10 10 10 10 01 01 11 11 01 01 10 10
  • 24. RADOS ● monitors publish osd map that describes cluster state ● ceph-osd node status (up/down, weight, IP) M ● CRUSH function specifying desired data distribution ● object storage daemons (OSDs) ● safely replicate and store object ● migrate data as the cluster changes over time ● coordinate based on shared view of reality ● decentralized, distributed approach allows ● massive scales (10,000s of servers or more) ● the illusion of a single copy with consistent behavior
  • 26.
  • 27.
  • 28. CLIENT ??
  • 29. APP APP APP APP HOST/VM HOST/VM CLIENT CLIENT RADOSGW RADOSGW RBD RBD CEPH FS CEPH FS LIBRADOS A bucket-based A bucket-based A reliable and fully- A reliable and fully- A POSIX-compliant A POSIX-compliant A library allowing REST gateway, REST gateway, distributed block distributed block distributed file distributed file apps to directly compatible with S3 compatible with S3 device, with aaLinux device, with Linux system, with aa system, with access RADOS, and Swift and Swift kernel client and aa kernel client and Linux kernel client Linux kernel client with support for QEMU/KVM driver QEMU/KVM driver and support for and support for C, C++, Java, FUSE FUSE Python, Ruby, and PHP RADOS RADOS A reliable, autonomous, distributed object store comprised of self-healing, self-managing, A reliable, autonomous, distributed object store comprised of self-healing, self-managing, intelligent storage nodes intelligent storage nodes
  • 30. APP APP LIBRADOS LIBRADOS native M M M M M M
  • 31. LIBRADOS L • Provides direct access to RADOS for applications • C, C++, Python, PHP, Java • No HTTP overhead
  • 32. APP APP APP APP HOST/VM HOST/VM CLIENT CLIENT RADOSGW RBD RBD CEPH FS CEPH FS LIBRADOS LIBRADOS A bucket-based A reliable and fully- A reliable and fully- A POSIX-compliant A POSIX-compliant A library allowing A library allowing REST gateway, distributed block distributed block distributed file distributed file apps to directly apps to directly compatible with S3 device, with aaLinux device, with Linux system, with aa system, with access RADOS, access RADOS, and Swift kernel client and aa kernel client and Linux kernel client Linux kernel client with support for with support for QEMU/KVM driver QEMU/KVM driver and support for and support for C, C++, Java, C, C++, Java, FUSE FUSE Python, Ruby, Python, Ruby, and PHP and PHP RADOS RADOS A reliable, autonomous, distributed object store comprised of self-healing, self-managing, A reliable, autonomous, distributed object store comprised of self-healing, self-managing, intelligent storage nodes intelligent storage nodes
  • 33. APP APP APP APP REST RADOSGW RADOSGW RADOSGW RADOSGW LIBRADOS LIBRADOS LIBRADOS LIBRADOS native M M M M M M
  • 34. RADOS Gateway: • REST-based interface to RADOS • Supports buckets, accounting • Compatible with S3 and Swift applications
  • 35. APP APP APP APP HOST/VM HOST/VM CLIENT CLIENT RADOSGW RADOSGW RBD CEPH FS CEPH FS LIBRADOS LIBRADOS A bucket-based A bucket-based A reliable and fully- A POSIX-compliant A POSIX-compliant A library allowing A library allowing REST gateway, REST gateway, distributed block distributed file distributed file apps to directly apps to directly compatible with S3 compatible with S3 device, with a Linux system, with aa system, with access RADOS, access RADOS, and Swift and Swift kernel client and a Linux kernel client Linux kernel client with support for with support for QEMU/KVM driver and support for and support for C, C++, Java, C, C++, Java, FUSE FUSE Python, Ruby, Python, Ruby, and PHP and PHP RADOS RADOS A reliable, autonomous, distributed object store comprised of self-healing, self-managing, A reliable, autonomous, distributed object store comprised of self-healing, self-managing, intelligent storage nodes intelligent storage nodes
  • 36. COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER COMPUTER COMPUTER DISK DISK DISK DISK COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK
  • 37. COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK VM VM COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK VM VM COMPUTER DISK COMPUTER DISK COMPUTER COMPUTER DISK DISK VM VM COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK COMPUTER COMPUTER DISK DISK
  • 38. VM VM VIRTUALIZATION CONTAINER VIRTUALIZATION CONTAINER LIBRBD LIBRBD LIBRADOS LIBRADOS M M M M M M
  • 39. CONTAINER CONTAINER VM VM CONTAINER CONTAINER LIBRBD LIBRBD LIBRBD LIBRBD LIBRADOS LIBRADOS LIBRADOS LIBRADOS M M M M M M
  • 40. HOST HOST KRBD (KERNEL MODULE) KRBD (KERNEL MODULE) LIBRADOS LIBRADOS M M M M M M
  • 41. RADOS Block Device: • Storage of virtual disks in RADOS • Decouples VMs and containers • Live migration! • Images are striped across the cluster • Snapshots! • Support in • Qemu/KVM • OpenStack, CloudStack • Mainline Linux kernel
  • 42. HOW DO YOU SPIN UP THOUSANDS OF VMs INSTANTLY AND EFFICIENTLY?
  • 43. instant copy 144 0 0 0 0 = 144
  • 44. write CLIENT write write write 144 4 = 148
  • 45. read read CLIENT read 144 4 = 148
  • 46. APP APP APP APP HOST/VM HOST/VM CLIENT CLIENT RADOSGW RADOSGW RBD RBD CEPH FS LIBRADOS LIBRADOS A bucket-based A bucket-based A reliable and fully- A reliable and fully- A POSIX-compliant A library allowing A library allowing REST gateway, REST gateway, distributed block distributed block distributed file apps to directly apps to directly compatible with S3 compatible with S3 device, with aaLinux device, with Linux system, with a access RADOS, access RADOS, and Swift and Swift kernel client and aa kernel client and Linux kernel client with support for with support for QEMU/KVM driver QEMU/KVM driver and support for C, C++, Java, C, C++, Java, FUSE Python, Ruby, Python, Ruby, and PHP and PHP RADOS RADOS A reliable, autonomous, distributed object store comprised of self-healing, self-managing, A reliable, autonomous, distributed object store comprised of self-healing, self-managing, intelligent storage nodes intelligent storage nodes
  • 47. CLIENT CLIENT metadata 01 01 data 10 10 M M M M M M
  • 48. M M M M M M
  • 49. Metadata Server • Manages metadata for a POSIX-compliant shared filesystem • Directory hierarchy • File metadata (owner, timestamps, mode, etc.) • Stores metadata in RADOS • Does not serve file data to clients • Only required for shared filesystem
  • 51.
  • 52.
  • 53.
  • 54.
  • 56. recursive accounting ● ceph-mds tracks recursive directory stats ● file sizes ● file and directory counts ● modification time ● virtual xattrs present full stats ● efficient $ ls ­alSh | head total 0 drwxr­xr­x 1 root            root      9.7T 2011­02­04 15:51 . drwxr­xr­x 1 root            root      9.7T 2010­12­16 15:06 .. drwxr­xr­x 1 pomceph         pg4194980 9.6T 2011­02­24 08:25 pomceph drwxr­xr­x 1 mcg_test1       pg2419992  23G 2011­02­02 08:57 mcg_test1 drwx­­x­­­ 1 luko            adm        19G 2011­01­21 12:17 luko drwx­­x­­­ 1 eest            adm        14G 2011­02­04 16:29 eest drwxr­xr­x 1 mcg_test2       pg2419992 3.0G 2011­02­02 09:34 mcg_test2 drwx­­x­­­ 1 fuzyceph        adm       1.5G 2011­01­18 10:46 fuzyceph drwxr­xr­x 1 dallasceph      pg275     596M 2011­01­14 10:06 dallasceph
  • 57. snapshots ● volume or subvolume snapshots unusable at petabyte scale ● snapshot arbitrary subdirectories ● simple interface ● hidden '.snap' directory ● no special tools $ mkdir foo/.snap/one # create snapshot $ ls foo/.snap one $ ls foo/bar/.snap _one_1099511627776 # parent's snap name is mangled $ rm foo/myfile $ ls -F foo bar/ $ ls -F foo/.snap/one myfile bar/ $ rmdir foo/.snap/one # remove snapshot
  • 58. multiple protocols, implementations ● Linux kernel client ● mount -t ceph 1.2.3.4:/ /mnt NFS SMB/CIFS ● export (NFS), Samba (CIFS) ● ceph-fuse Ganesha Samba libcephfs libcephfs ● libcephfs.so ● your app Hadoop your app libcephfs libcephfs ● Samba (CIFS) ● Ganesha (NFS) ceph-fuse ceph fuse ● Hadoop (map/reduce) kernel
  • 59. APP APP APP APP HOST/VM HOST/VM CLIENT CLIENT RADOSGW RADOSGW RBD RBD CEPH FS CEPH FS LIBRADOS LIBRADOS A bucket-based A bucket-based A reliable and fully- A reliable and fully- A POSIX-compliant A POSIX-compliant A library allowing A library allowing REST gateway, REST gateway, distributed block distributed block distributed file distributed file apps to directly apps to directly compatible with S3 compatible with S3 device, with aaLinux device, with Linux system, with aa system, with access RADOS, access RADOS, and Swift and Swift kernel client and aa kernel client and Linux kernel client Linux kernel client with support for with support for QEMU/KVM driver QEMU/KVM driver and support for and support for C, C++, Java, C, C++, Java, FUSE FUSE Python, Ruby, Python, Ruby, and PHP and PHP AWESOME AWESOME NEARLY AWESOME AWESOME RADOS RADOS AWESOME A reliable, autonomous, distributed object store comprised of self-healing, self-managing, A reliable, autonomous, distributed object store comprised of self-healing, self-managing, intelligent storage nodes intelligent storage nodes
  • 60. current status ● argonaut stable release v0.48 ● rados, RBD, radosgw ● bobtail stable release v0.55 ● RBD cloning ● improved performance, scaling, failure behavior ● radosgw API, performance improvements ● freeze in ~1 week, release in ~4 weeks
  • 61. roadmap ● file system ● pivot in engineering focus ● CIFS (Samba), NFS (Ganesha), Hadoop ● RBD ● Xen integration, iSCSI ● radosgw ● Keystone integration ● RADOS ● geo-replication ● PG split
  • 62. why we do this ● limited options for scalable open source storage ● proprietary solutions ● expensive ● don't scale (well or out) ● marry hardware and software ● users hungry for alternatives ● scalability ● cost ● features
  • 63. two fields ● green: cloud, big data ● incumbents don't have a viable solution ● most players can't afford to build their own ● strong demand for open source solutions ● brown: traditional SAN, NAS; enterprise ● incumbents struggle to scale out ● can't compete on price with open solutions
  • 64. licensing ● <yawn> ● promote adoption ● enable community development ● prevent ceph from becoming proprietary ● allow organic commercialization
  • 65. ceph license ● LGPLv2 ● “copyleft” – free distribution – allow derivative works – changes you distribute/sell must be shared ● ok to link to proprietary code – allow proprietary products to incude and build on ceph – does not allow proprietary derivatives of ceph
  • 66. fragmented copyright ● we do not require copyright assignment from contributors ● no single person or entity owns all of ceph ● no single entity can make ceph proprietary ● strong community ● many players make ceph a safe technology bet ● project can outlive any single business
  • 67. why its important ● ceph is an ingredient ● we need to play nice in a larger ecosystem ● community will be key to ceph's success ● truly open source solutions are disruptive ● open is a competitive advantage – frictionless integration with projects, platforms, tools – freedom to innovate on protocols – leverage community testing, development resources – open collaboration is efficient way to build technology
  • 68. who we are ● Ceph created at UC Santa Cruz (2004-2007) ● supported by DreamHost (2008-2011) ● Inktank (2012) ● Los Angeles, Sunnyvale, San Francisco, remote ● growing user and developer community ● Linux distros, users, cloud stacks, SIs, OEMs http://ceph.com/
  • 69. thanks sage weil sage@inktank.com http://github.com/ceph @liewegas http://ceph.com/
  • 70.
  • 71. why we like btrfs ● pervasive checksumming ● snapshots, copy-on-write ● efficient metadata (xattrs) ● inline data for small files ● transparent compression ● integrated volume management ● software RAID, mirroring, error recovery ● SSD-aware ● online fsck ● active development community