@@ -48,6 +48,27 @@ get [-t <type>] <object> [<name>]
compression
compression algorithm set for an inode, possible values: *lzo*, *zlib*, *zstd*.
To disable compression use "" (empty string), *no* or *none*.
+ allocation_hint
+ a device property that instructs how and when the allocator should use a
+ block device.
+ Possible values are:
+
+ METADATA_PREFERRED
+ the device has an higher priority when a new metadata
+ chunk is allocated. Data chunk is allowed only if there is no other
+ possibility.
+ METADATA_ONLY
+ the device is used only for metadata chunk.
+ Data chunk is never allowed.
+ DATA_PREFERRED (default)
+ the device has an higher priority when a new data
+ chunk is allocated. Metadata chunk is allowed only if there is no other
+ possibility.
+ DATA_ONLY
+ the device is used only for data chunk. Metadata chunk is never allowed.
+
+ The default is 'DATA_PREFERRED'; if all the disks have this setting the
+ allocator uses all of them with the same priority.
list [-t <type>] <object>
Lists available properties with their descriptions for the given object.