summaryrefslogtreecommitdiffstats
path: root/src/ceph/doc/dev/object-store.rst
blob: 355f51548329eb1b095b9411331d4647364d30e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
====================================
 Object Store Architecture Overview
====================================

.. graphviz::

  /*
   * Rough outline of object store module dependencies
   */

  digraph object_store {
    size="7,7";
    node [color=lightblue2, style=filled, fontname="Serif"];

    "testrados" -> "librados"
    "testradospp" -> "librados"

    "rbd" -> "librados"

    "radostool" -> "librados"

    "radosgw-admin" -> "radosgw"

    "radosgw" -> "librados"

    "radosacl" -> "librados"

    "librados" -> "objecter"

    "ObjectCacher" -> "Filer"

    "dumpjournal" -> "Journaler"

    "Journaler" -> "Filer"

    "SyntheticClient" -> "Filer"
    "SyntheticClient" -> "objecter"

    "Filer" -> "objecter"

    "objecter" -> "OSDMap"

    "ceph-osd" -> "PG"
    "ceph-osd" -> "ObjectStore"

    "crushtool" -> "CrushWrapper"

    "OSDMap" -> "CrushWrapper"

    "OSDMapTool" -> "OSDMap"

    "PG" -> "PrimaryLogPG"
    "PG" -> "ObjectStore"
    "PG" -> "OSDMap"

    "PrimaryLogPG" -> "ObjectStore"
    "PrimaryLogPG" -> "OSDMap"

    "ObjectStore" -> "FileStore"
    "ObjectStore" -> "BlueStore"

    "BlueStore" -> "rocksdb"

    "FileStore" -> "xfs"
    "FileStore" -> "btrfs"
    "FileStore" -> "ext4"
  }


.. todo:: write more here