mirror of
https://github.com/ceph/ceph
synced 2025-02-03 17:03:51 +00:00
9213a23f14
git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@1138 29311d96-e01e-0410-9327-a35deaab8ce9
41 lines
788 B
Perl
41 lines
788 B
Perl
#!/usr/bin/perl
|
|
|
|
# hi there
|
|
{
|
|
'_psub' => 'jobs/alc.tp',
|
|
|
|
'sleep' => 3,
|
|
|
|
'nummds' => [1, 2, 4, 6, 8, 12, 16, 24, 32, 40, 48, 64],
|
|
|
|
'cper' => 50,
|
|
'_dep' => [ 'cnode' => '$nummds',
|
|
'numclient' => '$cnode * $cper',
|
|
'numosd' => '$nummds * 2',
|
|
'n' => '1 + $cnode + $nummds + $numosd' ],
|
|
|
|
# parameters
|
|
#'fs' => 'ebofs',
|
|
'fs' => 'fakestore',
|
|
|
|
'until' => 300, # --syn until $n ... when to stop clients
|
|
'kill_after' => 400,
|
|
|
|
'makedirs' => 1,
|
|
'makedirs_dirs' => 10,
|
|
'makedirs_files' => 10,
|
|
'makedirs_depth' => 3,
|
|
|
|
'custom' => '--tcp_skip_rank0',
|
|
#'custom' => '--debug_after 110 --debug_osd 15 --debug_filer 15 --debug 5',
|
|
|
|
# for final summation (script/sum.pl)
|
|
'start' => 100,
|
|
'end' => 550,
|
|
|
|
'comb' => {
|
|
'x' => 'nummds',
|
|
'vars' => [ 'mds.req' ]
|
|
}
|
|
};
|