ceph/tasks/ceph_fuse.py

106 lines
2.8 KiB
Python
Raw Normal View History

"""
Ceph FUSE client task
"""
2011-06-02 22:04:01 +00:00
import contextlib
import logging
from teuthology import misc as teuthology
from teuthology.orchestra import run
from cephfs.fuse_mount import FuseMount
2011-06-02 22:04:01 +00:00
log = logging.getLogger(__name__)
def get_client_configs(ctx, config):
"""
Get a map of the configuration for each FUSE client in the configuration
by combining the configuration of the current task with any global overrides.
:param ctx: Context instance
:param config: configuration for this task
:return: dict of client name to config or to None
"""
if config is None:
config = dict(('client.{id}'.format(id=id_), None)
for id_ in teuthology.all_roles_of_type(ctx.cluster, 'client'))
elif isinstance(config, list):
config = dict((name, None) for name in config)
overrides = ctx.config.get('overrides', {})
teuthology.deep_merge(config, overrides.get('ceph-fuse', {}))
return config
2011-06-02 22:04:01 +00:00
@contextlib.contextmanager
def task(ctx, config):
2011-06-06 21:22:49 +00:00
"""
Mount/unmount a ``ceph-fuse`` client.
2011-06-06 21:22:49 +00:00
The config is optional and defaults to mounting on all clients. If
a config is given, it is expected to be a list of clients to do
this operation on. This lets you e.g. set up one client with
``ceph-fuse`` and another with ``kclient``.
Example that mounts all clients::
tasks:
- ceph:
2012-02-20 15:12:53 +00:00
- ceph-fuse:
- interactive:
2012-02-20 15:12:53 +00:00
Example that uses both ``kclient` and ``ceph-fuse``::
2011-06-06 21:22:49 +00:00
tasks:
- ceph:
2012-02-20 15:12:53 +00:00
- ceph-fuse: [client.0]
- kclient: [client.1]
2011-06-06 21:22:49 +00:00
- interactive:
Example that enables valgrind:
tasks:
- ceph:
2012-02-20 15:12:53 +00:00
- ceph-fuse:
client.0:
valgrind: [--tool=memcheck, --leak-check=full, --show-reachable=yes]
- interactive:
:param ctx: Context
:param config: Configuration
2011-06-06 21:22:49 +00:00
"""
log.info('Mounting ceph-fuse clients...')
2011-06-02 22:04:01 +00:00
testdir = teuthology.get_testdir(ctx)
config = get_client_configs(ctx, config)
clients = list(teuthology.get_clients(ctx=ctx, roles=config.keys()))
fuse_mounts = {}
for id_, remote in clients:
client_config = config.get("client.%s" % id_)
if client_config is None:
client_config = {}
2011-06-02 22:04:01 +00:00
fuse_mount = FuseMount(client_config, testdir, id_, remote)
fuse_mounts[id_] = fuse_mount
fuse_mount.mount()
for mount in fuse_mounts.values():
mount.wait_until_mounted()
2011-06-02 22:04:01 +00:00
ctx.mounts = fuse_mounts
2011-06-02 22:04:01 +00:00
try:
yield fuse_mounts
2011-06-02 22:04:01 +00:00
finally:
log.info('Unmounting ceph-fuse clients...')
for mount in fuse_mounts.values():
mount.umount()
run.wait([m.fuse_daemon for m in fuse_mounts.values()], timeout=600)
for mount in fuse_mounts.values():
mount.cleanup()