From: Steven Berler Date: Fri, 22 Jul 2011 23:51:23 +0000 (-0700) Subject: added sample yaml config for readwrite tool X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=680be1275045cb08931836fbfed58ff3c94e277b;p=s3-tests.git added sample yaml config for readwrite tool --- diff --git a/config.yml.SAMPLE b/config.yml.SAMPLE index a7337098..00e7d892 100644 --- a/config.yml.SAMPLE +++ b/config.yml.SAMPLE @@ -12,6 +12,29 @@ file_generation: - [1, 2, 3] - [4, 5, 6] +## Config for the readwrite tool. +## The readwrite tool concurrently reads and writes to files in a +## single bucket for a set duration. +## Note: the readwrite tool does not need the s3.alt connection info. +## only s3.main is used. +rand_readwrite: +## The number of reader and writer worker threads. This sets how many +## files will be read and written concurrently. + readers: 2 + writers: 2 +## The duration to run tests in seconds. Doesn't count setup/warmup time + duration: 15 + + files: +## The number of files to use. This number of files is created during the +## "warmup" phase. After the warmup, readers will randomly pick a file to +## read, and writers will randomly pick a file to overwrite + num: 3 +## The file size to use, in KB + size: 1024 +## The stddev for the file size, in KB + stddev: 0 + s3: ## This section contains all the connection information