2012-05-18 20:54:51 +00:00
|
|
|
===========================================
|
|
|
|
Hard Disk and File System Recommendations
|
|
|
|
===========================================
|
2012-05-03 03:31:35 +00:00
|
|
|
|
2012-09-06 00:21:04 +00:00
|
|
|
Hard Disk Prep
|
|
|
|
==============
|
|
|
|
|
2012-05-03 17:15:21 +00:00
|
|
|
Ceph aims for data safety, which means that when the application receives notice
|
|
|
|
that data was written to the disk, that data was actually written to the disk.
|
|
|
|
For old kernels (<2.6.33), disable the write cache if the journal is on a raw
|
2012-05-03 03:31:35 +00:00
|
|
|
disk. Newer kernels should work fine.
|
|
|
|
|
2012-05-03 17:15:21 +00:00
|
|
|
Use ``hdparm`` to disable write caching on the hard disk::
|
2012-05-03 03:31:35 +00:00
|
|
|
|
2012-08-28 18:02:13 +00:00
|
|
|
sudo hdparm -W 0 /dev/hda 0
|
2012-05-03 03:31:35 +00:00
|
|
|
|
2012-07-10 15:14:42 +00:00
|
|
|
In production environments, we recommend running OSDs with an operating system
|
|
|
|
disk, and a separate disk(s) for data. If you run data and an operating system
|
|
|
|
on a single disk, create a separate partition for your data before configuring
|
|
|
|
your OSD cluster.
|
2012-05-03 17:15:21 +00:00
|
|
|
|
2012-09-06 00:21:04 +00:00
|
|
|
|
|
|
|
File Systems
|
|
|
|
============
|
|
|
|
|
2012-10-29 20:01:06 +00:00
|
|
|
Ceph OSDs rely heavily upon the stability and performance of the
|
|
|
|
underlying file system.
|
|
|
|
|
2012-11-07 22:07:28 +00:00
|
|
|
.. note:: We currently recommend ``XFS`` for production deployments.
|
|
|
|
We recommend ``btrfs`` for testing, development, and any
|
|
|
|
non-critical deployments. We believe that ``btrfs`` has the correct
|
|
|
|
feature set and roadmap to serve Ceph in the long-term, but ``XFS``
|
|
|
|
and ``ext4`` provide the necessary stability for today's deployments.
|
|
|
|
``btrfs`` development is proceeding rapidly: users should be
|
|
|
|
comfortable installing the latest released upstream kernels and be
|
|
|
|
able to track development activity for critical bug fixes.
|
2012-10-29 20:01:06 +00:00
|
|
|
|
|
|
|
Ceph OSDs depend on the Extended Attributes (XATTRs) of the underlying
|
|
|
|
file system for various forms of internal object state and metadata.
|
|
|
|
The underlying file system must provide sufficient capacity for
|
|
|
|
XATTRs. ``btrfs`` does not bound the total xattr metadata stored with
|
|
|
|
a file. ``XFS`` has a relatively large limit (64 KB) that most
|
|
|
|
deployments won't encounter, but the ``ext4`` is too small to be
|
2013-01-03 21:30:01 +00:00
|
|
|
usable.
|
|
|
|
|
|
|
|
You should always add the following line to the ``[osd]`` section of your
|
|
|
|
``ceph.conf`` file for ``ext4`` filesystems; you can optionally use
|
|
|
|
it for ``btrfs`` and ``XFS``.::
|
2012-05-03 03:31:35 +00:00
|
|
|
|
|
|
|
filestore xattr use omap = true
|
|
|
|
|
2012-09-06 00:21:04 +00:00
|
|
|
FS Background Info
|
|
|
|
==================
|
|
|
|
|
|
|
|
The ``XFS`` and ``btrfs`` file systems provide numerous advantages in highly
|
|
|
|
scaled data storage environments when `compared`_ to ``ext3`` and ``ext4``.
|
|
|
|
Both ``XFS`` and ``btrfs`` are `journaling file systems`_, which means that
|
|
|
|
they are more robust when recovering from crashes, power outages, etc. These
|
|
|
|
filesystems journal all of the changes they will make before performing writes.
|
|
|
|
|
|
|
|
``XFS`` was developed for Silicon Graphics, and is a mature and stable
|
|
|
|
filesystem. By contrast, ``btrfs`` is a relatively new file system that aims
|
|
|
|
to address the long-standing wishes of system administrators working with
|
|
|
|
large scale data storage environments. ``btrfs`` has some unique features
|
|
|
|
and advantages compared to other Linux filesystems.
|
|
|
|
|
|
|
|
``btrfs`` is a `copy-on-write`_ filesystem. It supports file creation
|
|
|
|
timestamps and checksums that verify metadata integrity, so it can detect
|
|
|
|
bad copies of data and fix them with the good copies. The copy-on-write
|
|
|
|
capability means that ``btrfs`` can support snapshots that are writable.
|
|
|
|
``btrfs`` supports transparent compression and other features.
|
|
|
|
|
|
|
|
``btrfs`` also incorporates multi-device management into the file system,
|
|
|
|
which enables you to support heterogeneous disk storage infrastructure,
|
|
|
|
data allocation policies. The community also aims to provide ``fsck``,
|
|
|
|
deduplication, and data encryption support in the future. This compelling
|
|
|
|
list of features makes ``btrfs`` the ideal choice for Ceph clusters.
|
|
|
|
|
|
|
|
.. _copy-on-write: http://en.wikipedia.org/wiki/Copy-on-write
|
|
|
|
.. _compared: http://en.wikipedia.org/wiki/Comparison_of_file_systems
|
|
|
|
.. _journaling file systems: http://en.wikipedia.org/wiki/Journaling_file_system
|