ceph/teuthology/task/radosbench.py

109 lines
3.9 KiB
Python
Raw Normal View History

import contextlib
import logging
from ..orchestra import run
log = logging.getLogger(__name__)
@contextlib.contextmanager
def task(ctx, config):
"""
Run radosbench
The config should be as follows:
radosbench:
clients: [client list]
time: <seconds to run>
pool: <pool to use>
example:
tasks:
- ceph:
2011-07-12 01:00:03 +00:00
- radosbench:
clients: [client.0]
time: 360
- interactive:
"""
log.info('Beginning radosbench...')
assert isinstance(config, dict), \
"please list clients to run on"
radosbench = {}
for role in config.get('clients', ['client.0']):
assert isinstance(role, basestring)
PREFIX = 'client.'
assert role.startswith(PREFIX)
id_ = role[len(PREFIX):]
(remote,) = ctx.cluster.only(role).remotes.iterkeys()
if config.get('pool', 'data') is not "data":
proc = remote.run(
args=[
"/bin/sh", "-c",
" ".join(['LD_LIBRARY_PATH=/tmp/cephtest/binary/usr/local/lib',
'/tmp/cephtest/enable-coredump',
'/tmp/cephtest/binary/usr/local/bin/ceph-coverage',
'/tmp/cephtest/archive/coverage',
'/tmp/cephtest/binary/usr/local/bin/rados',
'-c', '/tmp/cephtest/ceph.conf',
'-k', '/tmp/cephtest/data/{role}.keyring'.format(role=role),
'--name', role,
'mkpool', str(config.get('pool', 'data'))
]),
],
logger=log.getChild('radosbench.{id}'.format(id=id_)),
stdin=run.PIPE,
wait=False
)
run.wait([proc])
proc = remote.run(
2011-07-12 01:00:03 +00:00
args=[
"/bin/sh", "-c",
" ".join(['LD_LIBRARY_PATH=/tmp/cephtest/binary/usr/local/lib',
2011-10-03 23:41:17 +00:00
'/tmp/cephtest/enable-coredump',
'/tmp/cephtest/binary/usr/local/bin/ceph-coverage',
'/tmp/cephtest/archive/coverage',
'/tmp/cephtest/binary/usr/local/bin/rados',
'-c', '/tmp/cephtest/ceph.conf',
'-k', '/tmp/cephtest/data/{role}.keyring'.format(role=role),
'--name', role,
'-p' , str(config.get('pool', 'data')),
'bench', str(config.get('time', 360)), 'write',
]),
],
logger=log.getChild('radosbench.{id}'.format(id=id_)),
stdin=run.PIPE,
wait=False
)
radosbench[id_] = proc
try:
yield
finally:
log.info('joining radosbench')
run.wait(radosbench.itervalues())
if config.get('pool', 'data') is not "data":
proc = remote.run(
args=[
"/bin/sh", "-c",
" ".join(['LD_LIBRARY_PATH=/tmp/cephtest/binary/usr/local/lib',
'/tmp/cephtest/enable-coredump',
'/tmp/cephtest/binary/usr/local/bin/ceph-coverage',
'/tmp/cephtest/archive/coverage',
'/tmp/cephtest/binary/usr/local/bin/rados',
'-c', '/tmp/cephtest/ceph.conf',
'-k', '/tmp/cephtest/data/{role}.keyring'.format(role=role),
'--name', role,
'rmpool', str(config.get('pool', 'data'))
]),
],
logger=log.getChild('radosbench.{id}'.format(id=id_)),
stdin=run.PIPE,
wait=False
)
run.wait([proc])