From 9353c33abad9a486c67ea8bc82e06b37d3b36a92 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 19 Jan 2019 10:39:46 -0800 Subject: clean up. Removed scripts and some configs, they will be in their own repo. --- configs/aurora/fio.aurora | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 configs/aurora/fio.aurora (limited to 'configs/aurora/fio.aurora') diff --git a/configs/aurora/fio.aurora b/configs/aurora/fio.aurora deleted file mode 100644 index c91095e..0000000 --- a/configs/aurora/fio.aurora +++ /dev/null @@ -1,32 +0,0 @@ -downloadFIO = Process( - name='download-fio', - cmdline='curl -o fio.rpm https://svn.twitter.biz/rpms/fio.x86_64/RPMS/x86_64/fio-1.50-2.twitter.x86_64.rpm' -) - -extractFIO = Process( - name='extract-fio', - cmdline='rpm2cpio fio.rpm | cpio -idmv' -) - -runFIO = Process( - name='run-fio', - cmdline='./usr/bin/fio --name=writefile --size=8G --filesize=8G --filename=./fiotestfsync --bs=4k --nrfiles=1 --fsync=1 --randrepeat=0 --rw=write --refill_buffers --end_fsync=1 --iodepth=200 --ioengine=libaio --runtime=240', -) - -jobs = [ - Service( - cluster='smf1-test', - environment='devel', - role='fcuny', - name='fio', - task=Task( - processes=[downloadFIO, extractFIO, runFIO], - resources=Resources(cpu=10, ram=4096 * MB, disk=10 * GB), - constraints=order(downloadFIO, extractFIO, runFIO) - ), - instances=4, - constraints={ - 'base_platform': 'f4ww', - } - ) -] -- cgit v1.2.3