mirror of
https://github.com/ceph/ceph
synced 2024-12-16 16:39:21 +00:00
c525e1061b
The ceph task installs ceph using the debian packages now, and all invocations of binaries installed in {tmpdir}/binary/usr/local/bin/ are replace with the use of the binaries installed in standard locations by the debs. Author: Sander Pool <sander.pool@inktank.com> Signed-off-by: Sam Lang <sam.lang@inktank.com>
61 lines
1.7 KiB
Python
61 lines
1.7 KiB
Python
import contextlib
|
|
import logging
|
|
|
|
from teuthology.parallel import parallel
|
|
from teuthology import misc as teuthology
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
@contextlib.contextmanager
|
|
def task(ctx, config):
|
|
"""
|
|
Run fsx on an rbd image.
|
|
|
|
Currently this requires running as client.admin
|
|
to create a pool.
|
|
|
|
Specify which clients to run on as a list::
|
|
|
|
tasks:
|
|
ceph:
|
|
rbd_fsx:
|
|
clients: [client.0, client.1]
|
|
|
|
You can optionally change some properties of fsx:
|
|
|
|
tasks:
|
|
ceph:
|
|
rbd_fsx:
|
|
clients: <list of clients>
|
|
seed: <random seed number, or 0 to use the time>
|
|
ops: <number of operations to do>
|
|
size: <maximum image size in bytes>
|
|
"""
|
|
log.info('starting rbd_fsx...')
|
|
with parallel() as p:
|
|
for role in config['clients']:
|
|
p.spawn(_run_one_client, ctx, config, role)
|
|
yield
|
|
|
|
def _run_one_client(ctx, config, role):
|
|
testdir = teuthology.get_testdir(ctx)
|
|
(remote,) = ctx.cluster.only(role).remotes.iterkeys()
|
|
remote.run(
|
|
args=[
|
|
'{tdir}/enable-coredump'.format(tdir=testdir),
|
|
'ceph-coverage',
|
|
'{tdir}/archive/coverage'.format(tdir=testdir),
|
|
'ceph_test_librbd_fsx',
|
|
'-d',
|
|
'-W', '-R', # mmap doesn't work with rbd
|
|
'-p', str(config.get('progress_interval', 100)), # show progress
|
|
'-P', '{tdir}/archive'.format(tdir=testdir),
|
|
'-t', str(config.get('truncbdy',1)),
|
|
'-l', str(config.get('size', 1073741824)),
|
|
'-S', str(config.get('seed', 0)),
|
|
'-N', str(config.get('ops', 1000)),
|
|
'pool_{pool}'.format(pool=role),
|
|
'image_{image}'.format(image=role),
|
|
],
|
|
)
|