You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/cephfs/file-layouts.rst
+20-8Lines changed: 20 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,26 +20,38 @@ Layout fields
20
20
-------------
21
21
22
22
pool
23
-
String, giving ID or name. String can only have characters in the set [a-zA-Z0-9\_-.]. Which RADOS pool a file's data objects will be stored in.
23
+
This is a string and returns either an ID or a name. Strings may contain
24
+
only characters in the set ``[a-zA-Z0-9\_-.]``. This determines the RADOS
25
+
pool that stores a file's data objects.
24
26
25
27
pool_id
26
-
String of digits. This is the system assigned pool id for the RADOS pool whenever it is created.
28
+
This is a string of digits. This is the pool ID that was assigned by Ceph
29
+
at the time of the creation of the RADOS pool.
27
30
28
31
pool_name
29
-
String, given name. This is the user defined name for the RADOS pool whenever user creates it.
32
+
This is a string. This is the name of the RADOS pool as defined by the user
33
+
when the pool was created.
30
34
31
35
pool_namespace
32
-
String with only characters in the set [a-zA-Z0-9\_-.]. Within the data pool, which RADOS namespace the objects will
33
-
be written to. Empty by default (i.e. default namespace).
36
+
This is a string containing only characters in the set ``[a-zA-Z0-9\_-.]``.
37
+
This determines which RADOS namespace within the data pool that the objects
38
+
will be written to.
39
+
Empty by default (i.e. default namespace).
34
40
35
41
stripe_unit
36
-
Integer in bytes. The size (in bytes) of a block of data used in the RAID 0 distribution of a file. All stripe units for a file have equal size. The last stripe unit is typically incomplete–i.e. it represents the data at the end of the file as well as unused “space” beyond it up to the end of the fixed stripe unit size.
42
+
This is an integer. The size (in bytes) of a block of data used in the
43
+
distribution of a file. All stripe units for a file have equal size. The
44
+
last stripe unit is typically incomplete–that is, it represents the data at
45
+
the end of the file as well as unused “space” beyond the end of the file to
46
+
the end of the fixed stripe unit size.
37
47
38
48
stripe_count
39
-
Integer. The number of consecutive stripe units that constitute a RAID 0 “stripe” of file data.
49
+
Integer. The number of consecutive stripe units that constitute a RAID 0
50
+
“stripe” of file data.
40
51
41
52
object_size
42
-
Integer in bytes. File data is chunked into RADOS objects of this size.
53
+
Integer. The size of the object in bytes. File data is chunked into RADOS
0 commit comments